禁用数字替换
如何完全禁用我的应用程序(本机 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你说的是原生 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.不确定它是否有效,但尝试调用
SetLocalInfo
并将 LCType 参数设置为LOCALE_IDIGITSUBSTITUTION
。查看有关GetLocalInfo
和SetLocalInfo
的 MSDN 文档。似乎不可能以编程方式更改所有值,而且我不确定这是否只会影响活动进程。希望这有帮助!
Not sure if it'll work, but try to call
SetLocalInfo
with the LCType parameter set toLOCALE_IDIGITSUBSTITUTION
. Take a look at the MSDN documentation forGetLocalInfo
andSetLocalInfo
.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!
您可以使用 U+FF1x 字符而不是 U+003x,但会造成轻微的印刷后果。
With minor typographical consequences, you can use the U+FF1x characters instead of U+003x.