WPF的一种动态切语言方法

2019/04/10 10:10
阅读数 79

使用 resx 文件,可以动态切换语言,

新建Lang.zh-CN.resx  Lang.en-US.resx 资源文件

新建空类Lang.cs

新建如下类:

public class LanguageManager : INotifyPropertyChanged
    {
        private readonly ResourceManager _resourceManager;
        private static readonly Lazy<LanguageManager> _lazy = new Lazy<LanguageManager>(() => new LanguageManager());      
        public static LanguageManager Instance => _lazy.Value;
        public event PropertyChangedEventHandler PropertyChanged;

        private LanguageManager()
        {
            _resourceManager = new ResourceManager(typeof(Lang));
        }

        public string this[string name]
        {
            get
            {
                if (name == null)
                {
                    throw new ArgumentNullException(nameof(name));
                }
                return _resourceManager.GetString(name);
            }
        }

        public void ChangeLanguage(CultureInfo cultureInfo)
        {
            CultureInfo.CurrentCulture = cultureInfo;
            CultureInfo.CurrentUICulture = cultureInfo;
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Item[]"));
        }
    }
View Code

使用方法:

<TextBlock FontSize="20" Margin="10" Text="{Binding [String1], Source={x:Static local:LanguageManager.Instance}}"/>
View Code

切换语言:

LanguageManager.Instance.ChangeLanguage(new CultureInfo("zh-CN"));
View Code


源码已上传至Gitgub

 

原文出处:https://www.cnblogs.com/yxhq/p/12405303.html

展开阅读全文
wpf
加载中

作者的其它热门文章

打赏
0
0 收藏
分享
打赏
0 评论
0 收藏
0
分享
返回顶部
顶部