禁用数字替换

发布于 2024-09-05 09:42:35 字数 151 浏览 10 评论 0原文

如何完全禁用我的应用程序(本机 c++)的数字替换(例如印地语数字而不是阿拉伯数字)?

我希望所有数字都显示为 0123 而不是 ٠١٢٣

Windows 中的本地化选项中有一个选项,但我不想为用户更改它。仅适用于我的应用程序。

谢谢你!

How can I disable the digit substitution (for example for Hindi numerals instead of Arabic ones) for my application (native c++) completely?

I want all the numbers displayed with 0123 instead of ٠١٢٣

There is an option in localization options in windows, but I don't want to change that for the user. Only for my app.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

痴梦一场 2024-09-12 09:42:35

你说的是原生 C++ 并且仍然有 WinForms 标签,这让我有点困惑...

假设它是一个没有任何 .Net 的原生 C++ 应用程序,我会查看 SetThreadLocale 函数,如 此处

Slightly confused by you saying native C++ and still having a WinForms tag...

Assuming that it's a native C++ app without any .Net, I'd look at the SetThreadLocale function as described here.

作死小能手 2024-09-12 09:42:35

不确定它是否有效,但尝试调用 SetLocalInfo 并将 LCType 参数设置为 LOCALE_IDIGITSUBSTITUTION。查看有关 GetLocalInfoSetLocalInfo 的 MSDN 文档。
似乎不可能以编程方式更改所有值,而且我不确定这是否只会影响活动进程。希望这有帮助!

Not sure if it'll work, but try to call SetLocalInfo with the LCType parameter set to LOCALE_IDIGITSUBSTITUTION. Take a look at the MSDN documentation for GetLocalInfo and SetLocalInfo.
It does not seem to be possible to change all values programmatically, also I'm not sure if this will only affect the active process. Hope this helps!

潇烟暮雨 2024-09-12 09:42:35

您可以使用 U+FF1x 字符而不是 U+003x,但会造成轻微的印刷后果。

With minor typographical consequences, you can use the U+FF1x characters instead of U+003x.

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