使用 CultureInfo 本地数字而不是英文版本
我将告诉我的 WinForms 应用程序使用 CultureInfo 本机数字而不是系统数字(例如英文版本)来显示数字/数字。那么有什么方法可以做到这一点吗?
Thread.CurrentThread.CurrentCulture = new CultureInfo("fa-IR");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fa-IR");
多谢 ;)
I'm going tell to my WinForms application to use CultureInfo native numbers instead of system numbers (e.g. English version) to show numeric/digits. So is there any approach to do this?
Thread.CurrentThread.CurrentCulture = new CultureInfo("fa-IR");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fa-IR");
Thanks a lot ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您对整个应用程序执行一次,而不是在每个方法中执行一次,这可能没问题,但事实上,为什么不让框架去做它需要做的事情,如果用户设置为使用德语怎么办?你应该尊重用户想要什么以及他在Windows控制面板中设置的内容。
this could be ok if you do it once for the whole application, not in every single method, but in fact, why don't you leave the framework to do what it needs to do, what if the user has set to use German language? you should respect what the user wants and what he has set in the windows control panel.
是的,您的方向是正确的
有关详细信息,请访问针对特定文化设置数字数据格式
Yes you are in right direction
For more information visit Formatting Numeric Data for a Specific Culture