gpt4 book ai didi

c# - 当安装了多种文化时,如何在 C# 中获取所选语言?

转载 作者:太空宇宙 更新时间:2023-11-03 12:42:17 25 4
gpt4 key购买 nike

Windows 上似乎安装了两种文化(语言)。例如 en-us(英文)和中文,如您所知,我们可以通过 Alt+Shift 更改语言。我需要显示所选语言。例如,如果当我在 Windows 窗体上单击按钮时选择了中文,则会选择一个显示中文的消息框。像这样:

if(culture == "en_us")
{
messagebox.show("English");
}
else
{
messageBox.show("Chinese");*
}

最佳答案

使用代表当前线程使用的文化的 CultureInfo 对象。

CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;

希望对您有所帮助。

关于c# - 当安装了多种文化时,如何在 C# 中获取所选语言?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38489627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com