Code Monkey home page Code Monkey logo

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.

wpf-localization-multiple-resource-resx-one-language's People

Contributors

jinjinov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

wpf-localization-multiple-resource-resx-one-language's Issues

Question on how to update resource managers during runtime

Hi,
thanks for the great idea, it works so well, but I don't understand how to change language during runtime. My hope was to do it on the selection changed event of a combox like:

private void Selector_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
    var content = ((ComboBoxItem)e.AddedItems[0]).Content.ToString();
    switch (content)
    {
        case "en":
            Translation.SetResourceManager(this, Properties.ResourcesEn.ResourceManager);
            break;
        case "de":
            Translation.SetResourceManager(this, Properties.ResourcesDe.ResourceManager);
            break;
    }
}

but the language is not updated. I did also try to change the CurrentCulture like:

TranslationSource.Instance.CurrentCulture = new CultureInfo("en-US");

and hoped it would reevaluate all bindings, but this also does not update the bindings.

Perhaps you could point me into the right direction. Thank you!

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.