Prism WPF 应用程序中的本地化
我正在寻找本地化 Prism 2 WPF 应用程序的最佳方法,该应用程序可能有多个模块移植到 Silverlight 3。有人成功本地化了包含多个模块的 Prism 2 WPF 应用程序吗?
I'm looking for the best way to localize a Prism 2 WPF app that might have several modules ported to Silverlight 3. Has anyone successfully localized a Prism 2 WPF app with several modules?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过使用一个静态 LocalizationManager 解决了同样的问题,该静态 LocalizationManager 可以通过自定义标记扩展从 XAML 访问,并且效果很好。
查看 http://www.wpftutorial.net/LocalizeMarkupExtension.html 示例!
I'm solved the same problem by having a static LocalizationManager that is reachable from XAML by a custom markupextension, and that works very well.
Take a look at http://www.wpftutorial.net/LocalizeMarkupExtension.html for an example!
是的。您有很多选择,可以在 CodePlex 上这篇优秀文章中找到所有选择:
http://wpflocalization.codeplex.com/
关于本地化,Prism 的具体内容很少。
Yes. You have a lot of options and the gamut of them can be found in this excellent article on CodePlex:
http://wpflocalization.codeplex.com/
There is very little that is specific to Prism regarding localization.