Hi,
Thanks for your extension !
Just one thing, I put text in code behind :
TextBlock tb = new TextBlock();
tb.Text = GetUIString("myKey");
public string GetUIString(string key)
{
string uiString;
LocExtension locExtension = new LocExtension("myAsselbly:I18n:" + key);
locExtension.ResolveLocalizedValue(out uiString);
return uiString;
}
When I change the language all my string put in XAML are updated but not the others...
Thanks for your help!
|