■ 다국어를 사용하는 방법을 보여준다.
▶ MainApplication.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
using System.Globalization; using System.Windows; using TestProject.LOCALIZATION; namespace TestProject { /// <summary> /// 메인 애플리케이션 /// </summary> public partial class MainApplication : Application { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainApplication() /// <summary> /// 생성자 /// </summary> public MainApplication() { // 영문 적용시 주석을 해제한다. //Resource.Culture = new CultureInfo("en-US"); } #endregion } } |
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:localization="clr-namespace:TestProject.LOCALIZATION" Width="800" Height="600" Title="다국어 사용하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"> <TextBox HorizontalAlignment="Center" Text="{x:Static localization:Resource.KEY1}" /> <TextBox HorizontalAlignment="Center" Margin="0 10 0 0" Text="{x:Static localization:Resource.KEY2}" /> </StackPanel> </Grid> </Window> |
※ 설정 사항
1. Resource.resx 리소스 파일을 추가한다.
2. Resource.ko-KR.resx 리소스 파일을 추가한다.
3. Resource.Designer.cs 파일에서 internal 키워드를 public 키워드로 모두 변경한다.