翼度科技»论坛 编程开发 .net 查看内容

不一样的WPF多语言切换方案

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
前言
  作为技术而言,我并不认为多语言有什么值得深入研究的地方,本来也没打算开这个话题。前段时间看到了群里有朋友在讨论这个,一想到它确实也算一个比较常用的功能,所以决定对它做一个封装,如果您正好需要,希望对您有帮助。
  多语言切换一般有两种方案,一种是使用资源字典(xaml文件)来实现,还有一种是资源文件(resx文件)来实现,xaml文件的方式优点是比较简单,只要替换掉原来的xaml文件就可以实现在运行中切换语言,resx的方式优点是它是官方的推荐方案,很多第三方库都是使用的这种方案,但是它的缺点很明显,那就是不能在运行时切换。
  我们今天采用第二种使用资源文件(resx)的方式,并让它可以在运行时切换,很多人可能就想问,为什么不用第一种资源字典(xaml)的方式呢?那是因为第一种方式它不是官方推荐的方式,对于一个软件来说,可能会引用很多第三方库,如果使用第一种方式可能就需要实现两种多语言切换方案,从软件设计角度来说这不是一个好的方案。
一、使用步骤
1.1 新建WPF项目,引用NuGet包“QS.WPF.Toolkit.GlobalizationSourceGenerator”;
  1. dotnet add package QS.WPF.Toolkit.GlobalizationSourceGenerator --version 1.0.3
复制代码
1.2 添加资源文件(名称为Resource.resx或Resources.resx);
    1.2.1 将资源文件的访问修饰符改为Public(鼠标双击Resource.resx文件打开);

     1.2.2 添加多语言版本文字(建议使用ResX Manager);

   当然你也可以自己添加,以下是添加后的效果。

 1.3 在界面上绑定资源
  1. <Window
  2.     x:Class="WpfApp20.MainWindow"
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.     xmlns:local="clr-namespace:WpfApp20"
  7.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8.     xmlns:res="clr-namespace:WpfApp20.Resources"
  9.     Title="MainWindow"
  10.     Width="800"
  11.     Height="450"
  12.     mc:Ignorable="d">
  13.     <Grid>
  14.         <TextBlock
  15.             HorizontalAlignment="Center"
  16.             VerticalAlignment="Center"
  17.             Text="{Binding Source={x:Static res:ResourceExtension.Instance}, Path=Welcome}" />
  18.     </Grid>
  19. </Window>
复制代码
智能提示可用

 设计视图可用

 1.4 语言切换
xaml
  1. <Window
  2.     x:Class="WpfApp20.MainWindow"
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.     xmlns:local="clr-namespace:WpfApp20"
  7.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8.     xmlns:res="clr-namespace:WpfApp20.Resources"
  9.     Title="MainWindow"
  10.     Width="800"
  11.     Height="450"
  12.     mc:Ignorable="d">
  13.     <Grid>
  14.         <TextBlock
  15.             HorizontalAlignment="Center"
  16.             VerticalAlignment="Center"
  17.             Text="{Binding Source={x:Static res:ResourceExtension.Instance}, Path=Welcome}" />
  18.     </Grid>
  19. </Window>        中文            English<Window
  20.     x:Class="WpfApp20.MainWindow"
  21.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  22.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  23.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  24.     xmlns:local="clr-namespace:WpfApp20"
  25.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  26.     xmlns:res="clr-namespace:WpfApp20.Resources"
  27.     Title="MainWindow"
  28.     Width="800"
  29.     Height="450"
  30.     mc:Ignorable="d">
  31.     <Grid>
  32.         <TextBlock
  33.             HorizontalAlignment="Center"
  34.             VerticalAlignment="Center"
  35.             Text="{Binding Source={x:Static res:ResourceExtension.Instance}, Path=Welcome}" />
  36.     </Grid>
  37. </Window>   
复制代码
cs
  1. using System.Windows;
  2. namespace WpfApp20
  3. {
  4.     public partial class MainWindow : Window
  5.     {
  6.         public MainWindow()
  7.         {
  8.             InitializeComponent();
  9.         }
  10.         private void Button_Click(object sender, RoutedEventArgs e)
  11.         {
  12.             WpfApp20.Resources.ResourceExtension.Instance.CurrentCulture = "zh-CN";
  13.         }
  14.         private void Button_Click_1(object sender, RoutedEventArgs e)
  15.         {
  16.             WpfApp20.Resources.ResourceExtension.Instance.CurrentCulture = "en-US";
  17.         }
  18.     }
  19. }
复制代码
完成后效果

二、实现原理
    细心的朋友可能第一个疑问就是ResourceExtension这个类怎么来的,这里使用了一个叫源码生成器的技术(如果没了解过可以自行搜索,了解的话自行略过),它是在编译阶段执行的,通过这个特性,我们可以在编译阶段读取Resource文件,然后根据这个文件里的静态属性来生成ResourceExtension类,这个类实现了属性通知的功能,当CurrentCulture属性被更改后,会循环调用OnPropertyChanged方法来触发所有的属性通知事件,如此就实现了运行时的语言切换。如果对生成的源代码感兴趣可以在项目依赖项的分析器下找到生成的代码。

 三、疑问解答
3.1 支持的.Net版本有哪些?
    .Net Framework>=4.5,.Net Core>=5.0。
3.2 为什么资源文件名必须是Resource或Resources?
    因为在.Net Framework WPF项目中,资源文件名默认是Resources,而在.Net Core WPF中资源文件名默认是Resource。
3.3 在.Net Framework WPF项目中引用这个包不起作用?
    .Net Framework项目中使用源生器目前只能手动添加,建议在.Net Core项目中编译成多目标框架版本的方式使用,如果确实要在.Net Framework版本中使用,可以给我留言。

 说明:示例代码会上传到QQ群共享文件,有需要可以前往下载。
QQ群

 
微信群:

 

来源:https://www.cnblogs.com/qushi2020/p/18198208
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具