如何使用 WPF 本地化扩展本地化资源?

发布于 2025-01-07 22:39:16 字数 269 浏览 0 评论 0原文

我已开始使用 WPF 本地化扩展来本地化 WPF 项目的资源。我喜欢这个库,因为它可以轻松地从 XAML 代码中找到资源。

当我想使用该库来本地化 C# 中的资源时,我遇到了一些问题。对于 MessageBar(在 WPF 中设计为 UserControl),我想在 C# 代码(ViewModel)中设置显示的消息。本地化字符串存储在资源文件中(与我用于在 XAML 中本地化字符串的资源文件相同)。

现在我的问题是,如何使用 WPF 本地化扩展本地化 C# 代码中的资源?最佳实践是什么?

I've started using the WPF Localization Extension to localize my resources for WPF projects. I like the library because it can easily locate resource's out of the XAML-Code.

When I want to use the library to localize my resources in C# I have some problems. For a MessageBar (designed as UserControl in WPF) I want to set the displayed message in C# Code (ViewModel). The localized strings are stored in resource-files (the same which I used to localize strings in XAML).

Now my question, how can I localize my resources in C#-Code using the WPF Localization Extension? What is the best practice?

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

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

发布评论

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

评论(1

白馒头 2025-01-14 22:39:16

您可以使用此代码访问字符串值。

public static string GetUIString(string key)
{
      string uiString;
      LocTextExtension locExtension = new LocTextExtension(key);
      locExtension.ResolveLocalizedValue(out uiString);
      return uiString;
}

在所有其他类都可以访问的位置声明此方法。然后在需要资源字符串的地方调用它并传递资源密钥

You can access your string values using this code.

public static string GetUIString(string key)
{
      string uiString;
      LocTextExtension locExtension = new LocTextExtension(key);
      locExtension.ResolveLocalizedValue(out uiString);
      return uiString;
}

Declare this method at a place where it is accessible to all the other classes. Then call it where ever you need the resource string and pass the resource key

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