WPF 双值数据与自定义小数分隔符绑定
是否有一种集中方式让 WPF UI 尊重控制面板 -> 中设置的自定义小数分隔符区域设置?
当我将双值数据绑定到文本框时,我想使用区域设置中设置的小数分隔符输入值。
下面的代码(当放入应用程序的构造函数中时)将使用当前区域性设置的小数分隔符,但不会遵守自定义的小数分隔符设置。我希望这段代码能够以某种方式轻松扩展以覆盖自定义的小数分隔符。
FrameworkElement.LanguageProperty.OverrideMetadata(typeof(FrameworkElement),
new FrameworkPropertyMetadata(XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag)));
Is there a centralized way to have the WPF UI to respect the customized decimal separator set in Control Panel -> Regional Settings?
When I bind a double valued data to a text box, I want to enter the value using the decimal separator set in Regional settings.
The code below (when put in App's ctor) will use the decimal separator of the current culture settings, but will not respect the customized decimal separator setting. I was hoping that this code could somehow easily be exteded to cover the customized decimal separator as well.
FrameworkElement.LanguageProperty.OverrideMetadata(typeof(FrameworkElement),
new FrameworkPropertyMetadata(XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag)));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过在您的文件中使用 StringFormat绑定?
Have you tried using StringFormat in your binding?
也许有点晚了,但我发现 这个是在研究我自己的格式化问题时。
名称“CultureInfo.UseUserOverride”非常不言自明。
Perhaps a bit late but I found this when researching my own formating problem.
The name "CultureInfo.UseUserOverride" is pretty self explanatory.