从项目属性中设置文化信息

Seting culture info from the project properties

我在 Visual Studio 2019 年在 C# (.NET) 中创建了 winforms 应用程序,我有以下代码:

   CultureInfo ci = new CultureInfo("de");
   Thread.CurrentThread.CurrentCulture = ci;

设置文化信息。但是,我想知道我是否可以通过其他方式手动设置文化信息,例如项目 -> 属性,但目前我找不到它。

这可能吗?

尝试这样的事情:

<configuration>
  [...]
  <appSettings>
    [...]
    <add key="defaultCulture" value="de" />
    [...]
  </appSettings>
  [...]
</configuration>

并像这样恢复值:

var value = System.Configuration.ConfigurationManager.AppSettings["defaultCulture"];