随笔分类 - WPF
WPF相关技术
摘要:问题描述:TextBox绑定了值,但当没有输入的时候,显示未能转换值"" 解决方案:给绑定增加converter, <TextBox Text="{Binding Count, Converter={StaticResource countConverter}}" /> 要这样绑定先要写一个conv
阅读全文
摘要:只能输入数字的限制 在XAML文件里 <TextBox PreviewTextInput= "TextBox_PreviewTextInput"></TextBox> xaml.cs文件里 private void TextBox_PreviewTextInput(object sender, Te
阅读全文
摘要:原本我写了一种方式 //wait cursor 等待 Cursor cursorOriginal = Application.Current.MainWindow.Cursor; Application.Current.MainWindow.Cursor = Cursors.Wait; //orig
阅读全文
摘要:这与注释的部分二选一 <Window.CommandBindings> <CommandBinding Command="ApplicationCommands.Save" Executed="SaveCommand_Executed" CanExecute="SaveCommand_CanExec
阅读全文