C# MessageBox buttons and UI

本文关键字:UI and buttons MessageBox | 更新日期: 2023-09-27 18:09:06

可能重复:
MessageBox按钮-是否设置语言?

在我的应用程序中,大多数消息都使用windows消息框。在启动时,我将应用程序文化设置为:

Thread.CurrentThread.CurrentCulture=新系统.全球化.CultureInfo("fr-fr"(;Thread.CurrentThread.CurrentUICulture=新系统.全球化.CultureInfo("fr-fr"(;

问题是,我的机器有英文窗口,消息框按钮是英文的,而有德文窗口的机器有德文的。

CurrentCulture或CurrentUICulture是否影响消息框按钮?

C# MessageBox buttons and UI

您不能通过简单地设置适当的区域性来切换操作系统文本消息。

UI语言对于任何Windows版本都是唯一的,但Ultimate除外,它可能安装多种语言,然后选择您想要的任何语言。不过,我不认为您可以切换运行时。