随笔分类 -  WPF

WPF相关技术
摘要:问题描述:TextBox绑定了值,但当没有输入的时候,显示未能转换值"" 解决方案:给绑定增加converter, <TextBox Text="{Binding Count, Converter={StaticResource countConverter}}" /> 要这样绑定先要写一个conv 阅读全文
posted @ 2020-09-22 13:25 养鼠的猫 阅读(1464) 评论(0) 推荐(0) 编辑
摘要:只能输入数字的限制 在XAML文件里 <TextBox PreviewTextInput= "TextBox_PreviewTextInput"></TextBox> xaml.cs文件里 private void TextBox_PreviewTextInput(object sender, Te 阅读全文
posted @ 2020-09-22 10:32 养鼠的猫 阅读(4041) 评论(0) 推荐(0) 编辑
摘要:原本我写了一种方式 //wait cursor 等待 Cursor cursorOriginal = Application.Current.MainWindow.Cursor; Application.Current.MainWindow.Cursor = Cursors.Wait; //orig 阅读全文
posted @ 2020-05-27 09:56 养鼠的猫 阅读(2123) 评论(0) 推荐(2) 编辑
摘要:64 64的表涂色 阅读全文
posted @ 2020-05-25 14:15 养鼠的猫 阅读(138) 评论(0) 推荐(0) 编辑
摘要:这与注释的部分二选一 <Window.CommandBindings> <CommandBinding Command="ApplicationCommands.Save" Executed="SaveCommand_Executed" CanExecute="SaveCommand_CanExec 阅读全文
posted @ 2019-07-25 10:55 养鼠的猫 阅读(729) 评论(0) 推荐(0) 编辑