If you need to set the ‘Language’ property to the current user’s UI language, use the following code.
[C#]
text1.Language = System.Windows.Markup.XmlLanguage.GetLanguage(
System.Globalization.CultureInfo.CurrentUICulture.IetfLanguageTag);
If you need to set the ‘Language’ property to the current user’s UI language, use the following code.
[C#]
text1.Language = System.Windows.Markup.XmlLanguage.GetLanguage(
System.Globalization.CultureInfo.CurrentUICulture.IetfLanguageTag);
Share with