前端国际化
1、创建资源字典
--------Chinese.xaml----------
<s:String x:Key="File">文件</s:String>
<s:String x:Key="Run">运行</s:String>
--------English.xaml----------
<s:String x:Key="File">File</s:String>
<s:String x:Key="Run">Run</s:String>
2、app.xaml的ResourceDictionary 中添加
Source="/Bussiess.LanguageResource;component/LanguageResource/Chinese.xaml"
3、xmal绑定资源字典的key
Text="{DynamicResource File}"
后端国际化
1、MessageBox.Show显示
MessageBox.Show(App.Current.Resources["File"].ToString())
2、try catch 报错
将电脑系统语言设置成对应国家的语言即可
3、ComboBox 绑定枚举对象且使用MarkUp
在自定义的EnumerationExtension : MarkupExtension中去获取该枚举对应到资源字典中的key
string GetDescription(object enumValue)
{
//前期在资源字典中定义好该枚举key,
//获取枚举的名称key,然后使用App.Current.Resources[Key].ToString()
}
另外是使用转换器,思路也是一样,推荐这种方案,不用修改EnumerationExtension类
4、ComboBox 绑定集合对象,比如读取数据库的集合
前端依然是绑定该对象,只是给DisplayMemberPath增加一个转换器,如果是联网情况下可以使用翻译功能
如果不是则将DisplayMemberPath绑定的对象作为key,然后去资源字典中查找对应的值,所以还是需要提前创建好key
切换语言
提供一个函数
csharp
/// <summary>
/// 切换语言,外部替换资源字典有效
/// </summary>
/// <param name="srcName"></param>
/// <param name="dstName"></param>
/// <param name="languageResourceDir">语言包所在文件夹路径</param>
/// <param name="collection"></param>
/// <returns></returns>
public static bool ChangeLangguage(string srcName, string dstName, string languageResourceDir, Collection<ResourceDictionary> collection)
{
if (string.IsNullOrEmpty(srcName)) return false;
if (string.IsNullOrEmpty(dstName)) return false;
if (collection == null) return false;
if (srcName == dstName) return true;
var srcdic = collection.FirstOrDefault(p => p.Source.OriginalString.Contains(srcName));
if (srcdic != null)
{
collection.Remove(srcdic);
}
ResourceDictionary dstresourceDictionary = new ResourceDictionary() { Source = new Uri($"{languageResourceDir}\\{dstName}.xaml") };
collection.Add(dstresourceDictionary);
return true;
}
其他
这篇文章使用的是资源字典的形式,还可以使用资源文件+ResxManager工具,还是很方便的。