GithubHelp home page GithubHelp logo

sebamatusr / wpf-localization-multiple-resource-resx-one-language Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jinjinov/wpf-localization-multiple-resource-resx-one-language

0.0 0.0 0.0 20 KB

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

License: MIT License

C# 100.00%

wpf-localization-multiple-resource-resx-one-language's 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.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.