Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何更改功能区控件上的默认语言,我使用的是丹麦语窗口,所以对话框和标准标签是丹麦语,但我正在用英语编写应用程序。
我尝试更改资源文件中的语言,并尝试使用 std::locale 和 setlocale() 更改语言环境。但没有任何效果。
我终于自己找到了答案:)。
SetThreadPreferredUILanguages(MUI_LANGUAGE_NAME, L"en-US", NULL);
为我做了,但前提是完全安装了特定的语言包。我希望它会帮助别人。