Localisation library for WPF - use with ResxManager
using CP.Localisation;
using System.Globalization;
public App()
{
CultureManager.UICulture = new CultureInfo("en-US");
CultureManager.UICulture.SyncCultureInfo();
}
Language="{UICulture}"
ResxExtension.DefaultResxName="YOUR.NAMESPACE.Properties.Resources"
8. Add the following Resx binding to each xaml element to set the binding to the current language value
<TextBlock Text="{Resx YOUR_RESOURCE_NAME}" />