Skip to content

Instantly share code, notes, and snippets.

@yxw
Created July 29, 2018 08:56
Show Gist options
  • Select an option

  • Save yxw/35e02caae97be75c28777b11e193b925 to your computer and use it in GitHub Desktop.

Select an option

Save yxw/35e02caae97be75c28777b11e193b925 to your computer and use it in GitHub Desktop.
WPF Localization
// App.xaml.cs
public void SwitchToLanguageCN()
{
ChangeLanguage("zh-CN");
}
// MainWindow.xaml.cs
private void btn_switchtogcn_Click(object sender, RoutedEventArgs e)
{
((App)Application.Current).SwitchToLanguageCN();
UpdateLayout();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment