使用 CultureInfo 本地数字而不是英文版本

发布于 2024-10-15 17:01:56 字数 256 浏览 2 评论 0原文

我将告诉我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仲春光 2024-10-22 17:01:56

如果您对整个应用程序执行一次,而不是在每个方法中执行一次,这可能没问题,但事实上,为什么不让框架去做它需要做的事情,如果用户设置为使用德语怎么办?你应该尊重用户想要什么以及他在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.

箜明 2024-10-22 17:01:56

是的,您的方向是正确的

// it will tell to use french
CultureInfo frenchCulture = new CultureInfo("fr-FR");
Thread.CurrentThread.CurrentCulture = frenchCulture;

有关详细信息,请访问针对特定文化设置数字数据格式

Yes you are in right direction

// it will tell to use french
CultureInfo frenchCulture = new CultureInfo("fr-FR");
Thread.CurrentThread.CurrentCulture = frenchCulture;

For more information visit Formatting Numeric Data for a Specific Culture

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文