问题描述 在WPF项目中,文本框BInding双向绑定了数据Text=“{UpdateSourceTrigger=PropertyChanged}”,但手套数据是double类型,手动输入数据时,小数点输入不进去 解决办法: 在App.xaml.cs文件中添加语句: protected override void OnStartup(StartupEventArgs e){FrameworkCompatibilityPreferences.KeepTextBoxDisplaySynchronizedWithTextProperty = false;base.OnStartup(e);}