WPF Textbox绑定浮点数在UpdateSourceTrigger=PropertyChanged时不能输入小数点问题解决
时间:2022-05-27 21:21:31
收藏:0
阅读:16
在 App.cs 的 OnStartup函数加入如下代码
1 protected override void OnStartup(StartupEventArgs e) 2 { 3 FrameworkCompatibilityPreferences.KeepTextBoxDisplaySynchronizedWithTextProperty = false; 4 base.OnStartup(e); 5 }
原文:https://www.cnblogs.com/tuqing/p/15358421.html
评论(0)