如何使用 WPF 本地化扩展本地化资源?
我已开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此代码访问字符串值。
在所有其他类都可以访问的位置声明此方法。然后在需要资源字符串的地方调用它并传递资源密钥
You can access your string values using this code.
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