如何在运行时切换resx?

发布于 2024-09-14 18:20:41 字数 115 浏览 3 评论 0原文

我有第二个 resx 文件 Strings.ps-ps.resx,我想在运行时将代码指向它。每个 resx 都有 Designer.cs 和唯一的类名。我必须自己切换/包装这些东西吗? ...或者有一些内置的方法吗?

I have a second resx file Strings.ps-ps.resx that I want to point my code to at runtime. Each resx has Designer.cs with a unique class name. Do I have to switch/wrap these things myself? ...or is there some built in approach?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原谅我要高飞 2024-09-21 18:20:41

您需要更改 UI 文化才能使用不同的 resx 文件。 完成

<globalization uiCulture="es" culture="es-MX" />

这可以在配置或代码中

Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");;

如果您想自动适应用户,您可以查询 HttpContext.Current.Request.UserLanguages 来获取用户浏览器设置

You need to change your UI Culture to use a different resx file. This can be done in config

<globalization uiCulture="es" culture="es-MX" />

or in code

Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");;

If you want to automatically adapt to the user, you can query the HttpContext.Current.Request.UserLanguages for the users browser settings

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文