• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Jinjinov/wpf-localization-multiple-resource-resx-one-language: WPF localization ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

Jinjinov/wpf-localization-multiple-resource-resx-one-language

开源软件地址(OpenSource Url):

https://github.com/Jinjinov/wpf-localization-multiple-resource-resx-one-language

开源编程语言(OpenSource Language):

C# 100.0%

开源软件介绍(OpenSource Introduction):

WPF localization with multiple Resource.resx files (resource managers) used for one language.

If you only want to localize text and you find the WPF Localization Extension too large for your needs, you can use this as a "one file" alternative that can localize strings (but not images).

It supports dynamic changes of culture, that means: it allows changing language at run-time, without restarting the application.

Useful for localizing multiple Prism modules:

ModuleA\Properties\Resources.resx
ModuleA\Properties\Resources.de.resx
ModuleA\Properties\Resources.es.resx

ModuleB\Properties\Resources.resx
ModuleB\Properties\Resources.de.resx
ModuleB\Properties\Resources.es.resx

This solution is based on the excellent simple approach by Jakub Fijałkowski

His solution can be found on GitHub

The hard coded reference to the ResourceManager was replaced with a Dictionary.

The markup extension is still used in the same way:

<TextBlock Text="{loc:Loc MyText}"/>

A new attached property Translation.ResourceManager is used with the root control of the visual tree (e.g. UserControl) to set the ResourceManager for the localization markup extension:

<UserControl xmlns:resx="clr-namespace:MyProject.Properties"
             xmlns:loc="clr-namespace:WpfLocalizationWithMultipleResourceManagers"
             loc:Translation.ResourceManager="{x:Static resx:Resources.ResourceManager}">
    <TextBlock Text="{loc:Loc MyText}"/>
</UserControl>

If you want to use a different ResourceManager with a specific control you can override the root setting at the control level:

<TextBox loc:Translation.ResourceManager="{x:Static resx:Resources.ResourceManager}" Text="{loc:Loc MyText}"/>

If you want to use the markup extension inside a control template you have to set the Translation.ResourceManager attached property on the TemplatedParent.

If you use this solution in a separate class library

  • Visual Studio designer displays the FallbackValue that was added to LocExtension.

  • You have to change Resources access modifier from "internal" to "public".

You can do this by setting the Custom Tool property in the Property Window for the Resx file: use the PublicResXFileCodeGenerator instead of the ResXFileCodeGenerator.

Alternatetively you can set the Access Modifier to public when you open the resx file in Visual Studio. The Access Modifier dropdown box can be found at the top of the form.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap