WPF – 현지화 방법
964 단어 i18nwpfl10n
단계
먼저, xaml 파일에 Button 버튼이 있고 그 내용이 버튼이라고 가정하고 지역화를 실현하려면 다음과 같이 하십시오.
xmlns:prop="clr-namespace:WpfApplication1.Properties"
- 测试:
protected override void OnStartup(System.Windows.StartupEventArgs e)
{
base.OnStartup(e);
// ,
System.Threading.Thread.CurrentThread.CurrentUICulture =
new System.Globalization.CultureInfo("en-US");
}