C#的国际化

C#通过编辑不同的资源文件来实现国际化。也就是在C#的项目中增加几个不同语言的资源。例如可以类似如下:

Resouces.zh-CN.resx

Resouces.en-US.resx


具体实现过程:

1.增加不同语言的资源文件。

C#的国际化_第1张图片

2.在编写资源文件的时候,保证资源的Name是一样的,只是在不同语言中的值是不同的

3.编写通用的语言转换类,如下,朋友们可以直接拿过去用,现成的。

        class ResourceCluture
        {
            public static void SetLocalClutrue(string strClutrue)
            {
                if (string.IsNullOrEmpty(strClutrue))
                {
                    strClutrue = "zh-CN";
                }
                CultureInfo currentClutrue = new CultureInfo(strClutrue);
                Thread.CurrentThread.CurrentCulture = currentClutrue;
            }


            public static string GetString(string id)
            {
                string strValue = string.Empty;
                try
                {
                    ResourceManager resManager = new ResourceManager("International.Properties.Resource", Assembly.GetExecutingAssembly());
                    strValue = resManager.GetString(id, Thread.CurrentThread.CurrentCulture);
                }
                catch
                {
                    strValue = "No id:" + id + "please add";
                }
                return strValue;
            }
        }

4.在切换语言的代码地方,去修改当前线程的CultureInfo,可以直接参考3所实现的设置当前现成语言

5.CultureInfo切换完成后,对于需要立即更新翻译的字符串,重新调用CultureResouces.GetString()接口,来给

控件或则字符串重新复制。





你可能感兴趣的:(C#国际化,c#)