运行时的外部 .resx 文件

发布于 2024-11-28 19:07:05 字数 143 浏览 1 评论 0原文

如果我想本地化 WPF 应用程序,我有什么选择?我希望能够选择填充语言的 .resx 文件,这很有效。但我需要在运行时从文件中获取语言。

所以我的问题是:是否可以在 WPF 应用程序中获取外部 .resx。并在运行时更改语言?还是我看待这个问题的角度不好?

What options do i have, if i want to localize WPF applications. I would like to have option to fill .resx files for languages, and that works. But I need to get language during runtime from files.

So my question is: Is it possible to get external .resx in WPF apps. And change language during runtime? Or am I looking at this issue at bad angle?

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

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

发布评论

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

评论(2

好久不见√ 2024-12-05 19:07:05

为什么不直接编译你的 resx 文件和你的默认资源呢?

将 Thread.CurrentThread.CurrentUICulture 设置为所需的区域性,然后调用 ResourceManager.GetString() 设置本地化属性。

如果您想获得另一种区域性,请使用重载。例如:

    public static string GetStringForCurrentUICulture(string name)
    {
        var value = _resourceManager.GetString(name, CultureInfo.CurrentUICulture);
        return value;
    }

要动态添加资源,请使用适当的 ResourceManager 构造函数,它允许您指定资源及其包含的程序集。

Why not just compile your resx files along with your default resources?

Set Thread.CurrentThread.CurrentUICulture to your desired culture, then call ResourceManager.GetString() to set your localized properties.

If you wanted to get another culture, use the overload. Something like:

    public static string GetStringForCurrentUICulture(string name)
    {
        var value = _resourceManager.GetString(name, CultureInfo.CurrentUICulture);
        return value;
    }

To add a resource dynamically, use the appropriate ResourceManager constructor, which allows you to specify the resource and the assembly it is contained within.

天赋异禀 2024-12-05 19:07:05

You can Localize the wpf application using the LocBaml Tool
This helps to create the resx files and make mapping to xaml

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