Created
July 29, 2018 08:56
-
-
Save yxw/35e02caae97be75c28777b11e193b925 to your computer and use it in GitHub Desktop.
WPF Localization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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