Skip to content

Instantly share code, notes, and snippets.

@Mahno74
Last active July 6, 2021 10:37
Show Gist options
  • Save Mahno74/51edfcb3a48ae1f17a7f876869e7624b to your computer and use it in GitHub Desktop.
Save Mahno74/51edfcb3a48ae1f17a7f876869e7624b to your computer and use it in GitHub Desktop.
Переключение на русский язык
//В WPF
//В xaml
<TextBox InputLanguageManager.InputLanguage="ru-RU" />
//В коде
InputLanguageManager.SetInputLanguage(inputTextBox, CultureInfo.CreateSpecificCulture("ru-RU"));
//В Windows Form
InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(System.Globalization.CultureInfo.CreateSpecificCulture("Ru"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment