当前位置:   article > 正文

多平台Avalonia UI框架的主题化和本地化功能

avalonia

目录

介绍

本地化、国际化和主题化

运行高级演示

什么是Avalonia

在多个平台上运行示例

主题/本地化代码位置

Nuget包位置

主题/本地化代码示例

示例代码位置

简单的主题示例

带有样式更改的简单主题

更改主题和语言示例

高级演示代码

结论


介绍

本地化、国际化和主题化

多年前,我遇到了一个用于本地化/国际化WPF应用程序的出色软件包。我成功地使用它来启用我构建的WPF应用程序,以便在英语和德语版本之间切换。

这个WPF包是由Tomer Shamam开发的,从那时起就从他以前的博客中删除了。他将代码发送给我,并在他的许可下,我将其发布在Github WPFLocalizationPackage存储库中。

最近,我再次需要国际化一个应用程序。最初,我想将该WPF包移植到AvaloniaWPF的一个出色的多平台开源后代)。最终,我决定从TomerWPF包中借鉴一些想法,从头开始构建一个新功能。

这个决定的主要原因是AvaloniaDynamicResource标记扩展和绑定工作得更好,并且没有困扰WPF同行的怪癖。因此,我没有创建自定义标记扩展,而是简单地利用了 AvaloniaDynamicResource

我仍然使用Tomer的想法,即C#对象包含不同的本地化词典,可以在不同的语言环境之间轻松切换。同样重要的是,我创建了一个与他的演示非常相似的演示应用程序,以确保我的实现涵盖了他的所有功能等等。

这两个包——Tomer的原始包和我的Avalonia包——可用于更改任何控件上的任何Dependency(或Avalonia)属性,而不仅仅是与本地化相关的属性。因此,相同的功能可用于主题化或蒙皮——完全改变应用程序的外观。

我的本地化/国际化包的优点是:

  • 它的使用简单——正如样本所证明的那样。
  • 它的动态特性——包括大公司的解决方案在内的一些其他解决方案需要为每个语言环境进行不同的编译,而我的包(以及TomerWPF包)允许在应用程序运行时切换语言环境。
  • 允许创建多组主题/本地化字典,每组只控制所需定制的一个坐标。几个示例将展示如何在几种语言和几种颜色主题之间动态切换——以便语言和颜色主题的任意组合成为可能。

运行高级演示

为了展示新主题和L10N(本地化)包的强大功能,我将从一个高级示例开始。此时不要看代码(后面会解释)。从NP.Demos.ThemingAndLocalizationDemo下载并运行演示。

这是您将看到的内容:

右上角的两个组合框允许选择语言(英语希伯来语俄语)和颜色主题(深色浅色)。上图显示了英语深色主题下的应用程序。

这是希伯来语浅色主题下的应用程序视图:

这是俄罗斯/深色组合:

什么是Avalonia

Avalonia是一个出色的多平台开源UI框架,用于开发跨WindowsMacLinux运行的桌面解决方案。

Avalonia的功能类似于WPF,但除了多平台之外,Avalonia已经比WPF更强大且错误更少。

浏览器中的Avalonia也将于今年年底推出(请参阅Avalonia in Browser Demo中的一个小但非常令人印象深刻的演示)。

移动版Avalonia也即将推出。

一旦浏览器中的Avalonia和移动版Avalonia发布,它将比用于构建任何类型的多平台应用程序的任何竞争框架好几英里:桌面、浏览器和移动。

Avalonia教程和有关这个精彩软件包的更多信息可以在我的文章中找到:

  1. 在Easy Samples中使用AvaloniaUI进行多平台UI编码——第1部分——AvaloniaUI构建块
  2. 多平台Avalonia .NET Framework简单示例中的XAML基础知识
  3. 简单示例中的多平台Avalonia .NET Framework编程基本概念
  4. 简单示例中的多平台Avalonia .NET Framework编程高级概念

在多个平台上运行示例

本文中的所有示例均已在Windows 10Mac CatalinaUbuntu 20.04上进行了测试

主题/本地化代码位置

新的主题/L10N功能是NP.Avalonia.Visuals开源包的一部分。这个包也可以有其他用途,我计划写另一篇文章来解释它最重要的功能。

还有另一个项目NP.ViewModelInterfaces包含由一些Visual对象实现的非可视界面。此代码的目的是在非可视项目中使用,例如,在不引用Avalonia代码的View Model项目中控制和查询某些可视对象。到目前为止,NP.ViewModelInterfaces仅包含与主题和本地化功能相关的接口:IThemeLoader.csThemeInfo.cs

Nuget包位置

Nuget包可从nuget.orgNP.Avalonia.Visuals获得。它取决于将自动安装的其他几个软件包。

您不需要单独引用Avalonia软件包,因为它们将通过安装NP.Avalonia.Visuals来安装。

如果您想从非可视(视图模型)项目中对主题/l10n功能进行一些控制,您可以只安装NP.ViewModelInterfaces也可从nuget.org获得。

主题/本地化代码示例

示例代码位置

所有Theming/L10N演示代码都可以在NP.Demos.ThemingAndL10N获得

简单的主题示例

此示例位于NP.Demos.SimpleThemingSample下

下载它,编译并运行。这是您将看到的内容:

 

按顶部的深色主题按钮。您会看到背景变为黑色,而文本颜色(前景)变为白色:

只有顶部的两个按钮不会改变。

查看主项目中的文件:

ColorThemes文件夹下有两个XAML文件,名为DarkResources.axamlLightResources.axaml。让我们来看看它们。这是DarkResources.axaml的内容:

  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <!-- Defing Background and Foreground brushes for dark theme -->
  4. <SolidColorBrush x:Key="BackgroundBrush"
  5. Color="Black"/>
  6. <SolidColorBrush x:Key="ForegroundBrush"
  7. Color="White"/>
  8. </ResourceDictionary>

这是LightResources.axaml

  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <!-- Defing Background and Foreground brushes for light theme -->
  4. <SolidColorBrush x:Key="BackgroundBrush"
  5. Color="White"/>
  6. <SolidColorBrush x:Key="ForegroundBrush"
  7. Color="Black"/>
  8. </ResourceDictionary>

它们包含具有相同键和相反颜色的Avalonia资源——在DarkResources.axaml BackgroundBrush'Black'ForegroundBrush是白色——而在LightResources.axaml中则相反。

在通常的主要解决方案文件中,只有App.axamlMainWindow.axamlMainWindow.axaml.cs有一些不平凡的变化。

查看App.axaml的内容:

  1. <Application xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:np="https://np.com/visuals"
  4. x:Class="NP.Demos.SimpleThemingSample.App">
  5. <Application.Resources>
  6. <ResourceDictionary>
  7. <ResourceDictionary.MergedDictionaries>
  8. <!-- define the Theme loader with two themes - Dark and Light -->
  9. <np:ThemeLoader Name="ColorThemeLoader"
  10. SelectedThemeId="Light"> <!-- Set original theme to Light -->
  11. <np:ThemeInfo Id="Dark"
  12. ResourceUrl="/ColorThemes/DarkResources.axaml"/>
  13. <np:ThemeInfo Id="Light"
  14. ResourceUrl="/ColorThemes/LightResources.axaml"/>
  15. </np:ThemeLoader>
  16. </ResourceDictionary.MergedDictionaries>
  17. </ResourceDictionary>
  18. </Application.Resources>
  19. <!-- Default Avalonia Styles -->
  20. <Application.Styles>
  21. <StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseDark.xaml"/>
  22. <StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
  23. </Application.Styles>
  24. </Application>

完成定义ThemeLoader的技巧的重要代码包含在ResourceDictionary.MergeDictionaries标记中:

  1. <!-- define the Theme loader with two themes - Dark and Light -->
  2. <np:ThemeLoader Name="ColorThemeLoader"
  3. SelectedThemeId="Light"> <!-- Set original theme to Light -->
  4. <np:ThemeInfo Id="Dark"
  5. ResourceUrl="/ColorThemes/DarkResources.axaml"/>
  6. <np:ThemeInfo Id="Light"
  7. ResourceUrl="/ColorThemes/LightResources.axaml"/>
  8. </np:ThemeLoader>

ThemeLoader本质上是一个可以交换其内容的智能ResourceDictionary

我们使用ThemeInfo对象定义了两个ThemeLoader主题。第一个ThemeInfo对象指定了深色主题——它的Id"Dark"并且它的ResourceUrl="/ColorThemes/DarkResources.axaml"被设置为指向上述DarkResources.axaml文件。第二个ThemeInfo对象通过ResourceUrl指向LightResource.asaml文件来指定浅色主题。它的Id"Light"

主题加载器可以通过更改其SelectedThemeId来交换其资源内容。最初,它被设置为"Light"第二个ThemeInfo对象的Id,所以它在应用程序启动时加载,我们让应用程序在浅色主题下运行。

我们将我们的ThemeLoader属性Name设置为ColorThemeLoader。通过这个名称,我们将能够在后面的MainWindow.axaml.cs代码中找到这个加载器。

按下按钮Dark Theme将导致后面的代码(在MainWindow.axaml.cs文件中)将我们ThemeLoaderSelectedThemeId更改为“ Dark,以便应用程序更改其颜色。

MainWindow.axaml文件非常简单:

  1. <Window ...
  2. Background="{DynamicResource BackgroundBrush}"
  3. Width="300"
  4. Height="200">
  5. <Grid RowDefinitions="Auto, *"
  6. Margin="10">
  7. <StackPanel Orientation="Horizontal">
  8. <!-- this button switches to light theme -->
  9. <Button x:Name="LightButton"
  10. Content="Light Theme"
  11. Margin="0,0,10,0"/>
  12. <!-- this button switches to dark theme -->
  13. <Button x:Name="DarkButton"
  14. Content="Dark Theme"
  15. Margin="0,0,0,0"/>
  16. </StackPanel>
  17. <TextBlock Text="Hello World from Avalonia !!!"
  18. Grid.Row="1"
  19. HorizontalAlignment="Center"
  20. VerticalAlignment="Center"
  21. FontSize="20"
  22. Foreground="{DynamicResource ForegroundBrush}"/>
  23. </Grid>
  24. </Window>

MainWindow's Background属性使用DynamicResource标记扩展连接到BackgroundBrush资源(在深色主题下指向黑色,在浅色主题下指向白色):Background="{DynamicResource BackgroundBrush}"

TextBlock's Foreground使用相同的方法来获取ForegroundBrush资源的值:Foreground="{DynamicResource ForegroundBrush}".

以下是MainWindow.axaml.cs文件内容的高亮代码:

  1. public partial class MainWindow : Window
  2. {
  3. // reference to ThemeLoader object defined
  4. // in XAML
  5. private ThemeLoader _themeLoader;
  6. public MainWindow()
  7. {
  8. InitializeComponent();
  9. ...
  10. // find the theme loader by its name
  11. _themeLoader =
  12. Application.Current.Resources.GetThemeLoader("ColorThemeLoader")!;
  13. // set the handler for lightButton's click event
  14. Button lightButton = this.FindControl<Button>("LightButton");
  15. lightButton.Click += LightButton_Click;
  16. // set the handler for darkButton's click event
  17. Button darkButton = this.FindControl<Button>("DarkButton");
  18. darkButton.Click += DarkButton_Click;
  19. }
  20. private void LightButton_Click(object? sender,
  21. global::Avalonia.Interactivity.RoutedEventArgs e)
  22. {
  23. // set the theme to Light
  24. _themeLoader.SelectedThemeId = "Light";
  25. }
  26. private void DarkButton_Click(object? sender,
  27. global::Avalonia.Interactivity.RoutedEventArgs e)
  28. {
  29. // set the theme to Dark
  30. _themeLoader.SelectedThemeId = "Dark";
  31. }
  32. ...
  33. }

首先,我们通过将其名称传递给GetThemeLoader扩展方法来获取在XAML中定义的ThemeLoader对象:

  1. // find the theme loader by its name
  2. _themeLoader =
  3. Application.Current.Resources.GetThemeLoader("ColorThemeLoader")!;

接下来,我们得到XAML中定义的LightButtonDarkButton的引用,并为它们Click事件设置处理程序:

  1. // set the handler for lightButton's click event
  2. Button lightButton = this.FindControl<Button>("LightButton");
  3. lightButton.Click += LightButton_Click;
  4. // set the handler for darkButton's click event
  5. Button darkButton = this.FindControl<Button>("DarkButton");
  6. darkButton.Click += DarkButton_Click;

在每个处理程序中,我们相应地为亮和暗按钮设置SelectedThemeIdstring "Light""Dark"

  1. private void LightButton_Click(object? sender, RoutedEventArgs e)
  2. {
  3. // set the theme to Light
  4. _themeLoader.SelectedThemeId = "Light";
  5. }
  6. private void DarkButton_Click(object? sender, RoutedEventArgs e)
  7. {
  8. // set the theme to Dark
  9. _themeLoader.SelectedThemeId = "Dark";
  10. }

带有样式更改的简单主题

前面的示例展示了如何更改背景和文本颜色。然而,顶部的Light ThemeDark Theme按钮并没有改变——它们仍然是深色的,因为在我们定义<StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseDark.xaml">App.axaml文件的<Styles>...</Styles>部分中,当主题改变时,对BaseDark.xaml样式的引用没有改变。

此示例的目的是展示当我们更改主题时如何更改对BaseLight.axaml文件的引用,该文件也可从Avalonia获得。

此演示的代码可在NP.Demos.SimpleThemingSampleWithStyleChange获得

编译并运行演示——这是您将看到的:

请注意,按钮是轻的。然后按深色主题按钮——主题改变,按钮也改变:

与上一个示例的唯一代码差异位于App.asaml文件中:

  1. <Application xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:np="https://np.com/visuals"
  4. x:Class="NP.Demos.SimpleThemingSample.App">
  5. <Application.Resources>
  6. <ResourceDictionary>
  7. <ResourceDictionary.MergedDictionaries>
  8. <!-- define the Theme loader with two themes - Dark and Light -->
  9. <np:ThemeLoader Name="ColorThemeLoader"
  10. SelectedThemeId="Light"
  11. StyleResourceName="ColorLoaderStyles">
  12. <!-- to refer to the style by StyleReference-->
  13. <np:ThemeInfo Id="Dark"
  14. ResourceUrl="/ColorThemes/DarkResources.axaml"
  15. StyleUrl="avares://Avalonia.Themes.Default/Accents/BaseDark.xaml"/>
  16. <!-- refers to dark styles -->
  17. <np:ThemeInfo Id="Light"
  18. ResourceUrl="/ColorThemes/LightResources.axaml"
  19. StyleUrl="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
  20. <!-- refers to light styles -->
  21. </np:ThemeLoader>
  22. </ResourceDictionary.MergedDictionaries>
  23. </ResourceDictionary>
  24. </Application.Resources>
  25. <Application.Styles>
  26. <!-- reference to the styles defined within the ThemeLoader-->
  27. <np:StyleReference TheStyle="{StaticResource ColorLoaderStyles}"/>
  28. <!-- Default Avalonia Style -->
  29. <StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
  30. </Application.Styles>
  31. </Application>

请注意,每个ThemeInfo对象都在前面的示例中解释了顶部IdResourceUrl属性上定义了StyleUrl

  1. <np:ThemeInfo Id="Dark"
  2. ResourceUrl="/ColorThemes/DarkResources.axaml"
  3. StyleUrl="avares://Avalonia.Themes.Default/Accents/BaseDark.xaml"/>
  4. <!-- refers to dark styles -->
  5. <np:ThemeInfo Id="Light"
  6. ResourceUrl="/ColorThemes/LightResources.axaml"
  7. StyleUrl="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
  8. <!-- refers to light styles -->

 “Dark主题对应的ThemeInfo对象指向BaseDark.xaml文件,而定义Light主题的另一个ThemeInfo对象指向BaseLight.xaml

主题加载器现在定义了一个属性StyleResourceNameStyleResourceName="ColorLoaderStyles">。选择此属性值时应避免与ThemeLoader中包含的资源的任何资源键发生冲突。StyleReference对象使用此值来引用我们ThemeLoader选择的依赖于主题的Style

  1. <Application.Styles>
  2. <!-- reference to the styles defined within the ThemeLoader-->
  3. <np:StyleReference TheStyle="{StaticResource ColorLoaderStyles}"/>
  4. ...
  5. </Application.Styles>

更改主题和语言示例

此示例的目的是演示一个支持独立更改其颜色主题和语言的应用程序,以便支持颜色主题和语言的每种组合。

此演示的代码可在以下URL中找到:NP.Demos.SimpleThemingAndL10NSample

以下是下载、编译和运行示例后您将看到的内容:

按下深色主题按钮会将颜色主题更改为深色

希伯来语按钮会将文本更改为希伯来语:

按下Light Theme按钮将再次将颜色主题更改为Light ”

查看演示应用程序中的项目文件:

此示例有两组字典:

  1. ColorThemes文件夹下的DarkResources.axamlLightResources.axaml
  2. LanguageDictionaries文件夹下的EnglishDictionary.axamlHebrewDictionary.axaml

颜色主题文件——DarkResources.axamlLightResources.axaml与前面的示例完全相同。

看看EnglishDictionary.axaml

  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <x:String x:Key="WindowTitle">Theming Demo</x:String>
  4. <x:String x:Key="WelcomeText">Hello World from Avalonia !!!</x:String>
  5. <x:String x:Key="WindowTitleText">Window Title is '{0}'</x:String>
  6. </ResourceDictionary>

它是一个非常简单的字典文件,它定义了三种 string资源——“WindowTitleWelcomeTextWindowTitleText

HebrewDictionary.axaml定义了相同的资源,但它们的值被翻译成希伯来语。

WindowTitle控制Window的标题,WelcomeText是窗口内显示的文本,WindowTitleText也作为第二行显示在窗口内。我添加它以显示使用Avalonia绑定的文本的动态替换。请注意,WindowTitleText的文本Window Title is '{0}'具有{0}部分,该部分将替换为窗口的标题。下面将解释它是如何实现的。

打开App.axaml文件。它定义了两个ThemeLoaders——一个用于颜色主题,另一个用于语言:

  1. <Application.Resources>
  2. <ResourceDictionary>
  3. <ResourceDictionary.MergedDictionaries>
  4. <!-- define the Theme loader with two themes - Dark and Light -->
  5. <np:ThemeLoader Name="ColorThemeLoader"
  6. SelectedThemeId="Light"
  7. StyleResourceName="ColorLoaderStyles">
  8. <!-- to refer to the style by StyleReference-->
  9. <np:ThemeInfo Id="Dark"
  10. ResourceUrl="/ColorThemes/DarkResources.axaml"
  11. StyleUrl="avares://Avalonia.Themes.Default/Accents/BaseDark.xaml"/>
  12. <!-- refers to dark styles -->
  13. <np:ThemeInfo Id="Light"
  14. ResourceUrl="/ColorThemes/LightResources.axaml"
  15. StyleUrl="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
  16. <!-- refers to light styles -->
  17. </np:ThemeLoader>
  18. <np:ThemeLoader Name="LanguageLoader"
  19. SelectedThemeId="English">
  20. <!-- to refer to the style by StyleReference-->
  21. <np:ThemeInfo Id="English"
  22. ResourceUrl="/LanguageDictionaries/EnglishDictionary.axaml"/>
  23. <!-- refers to dark styles -->
  24. <np:ThemeInfo Id="Hebrew"
  25. ResourceUrl="/LanguageDictionaries/HebrewDictionary.axaml"/>
  26. <!-- refers to light styles -->
  27. </np:ThemeLoader>
  28. </ResourceDictionary.MergedDictionaries>
  29. </ResourceDictionary>
  30. </Application.Resources>

ColorThemeLoader默认选择"Light"LanguageLoader "English"(SelectedThemeId="English")

现在打开MainWindow.asaml文件:

  1. <Window ...
  2. Title="{DynamicResource WindowTitle}"
  3. Background="{DynamicResource BackgroundBrush}"
  4. ...
  5. >
  6. <Grid RowDefinitions="Auto, *"
  7. Margin="10">
  8. <StackPanel Orientation="Horizontal">
  9. <!-- this button switches to light theme -->
  10. <Button x:Name="LightButton"
  11. Content="Light Theme"
  12. Margin="0,0,10,0"/>
  13. <!-- this button switches to dark theme -->
  14. <Button x:Name="DarkButton"
  15. Content="Dark Theme"
  16. Margin="0,0,10,0"/>
  17. <!-- this button switches to English language-->
  18. <Button x:Name="EnglishButton"
  19. Content="English"
  20. Margin="0,0,10,0"/>
  21. <!-- this button switches to Hebrew language-->
  22. <Button x:Name="HebrewButton"
  23. Content="Hebrew"
  24. Margin="0,0,10,0"/>
  25. </StackPanel>
  26. <StackPanel HorizontalAlignment="Center"
  27. VerticalAlignment="Center"
  28. Grid.Row="1">
  29. <TextBlock Text="{DynamicResource WelcomeText}"
  30. ...
  31. Foreground="{DynamicResource ForegroundBrush}"
  32. Margin="0,0,0,10"/>
  33. <TextBlock HorizontalAlignment="Center"
  34. ...
  35. Foreground="{DynamicResource ForegroundBrush}"
  36. Margin="0,0,0,10">
  37. <TextBlock.Text> <!-- Use multibinding to format the string -->
  38. <MultiBinding Converter="{x:Static np:StringFormatConverter.Instance}">
  39. <!-- pass the main string from a language dictionary -->
  40. <DynamicResourceExtension ResourceKey="WindowTitleText"/>
  41. <!-- pass window title as a string parameter -->
  42. <Binding Path="Title"
  43. RelativeSource="{RelativeSource AncestorType=Window}"/>
  44. </MultiBinding>
  45. </TextBlock.Text>
  46. </TextBlock>
  47. </StackPanel>
  48. </Grid>
  49. </Window>

Window标签将其Title设置为WindowTitle, Background 设置为来自主题/本地化字典的BackgroundBrush 

  1. Title="{DynamicResource WindowTitle}"
  2. Background="{DynamicResource BackgroundBrush}"

顶部定义了四个按钮:两个按钮用于深色和浅色主题,两个按钮用于英语和希伯来语。

TextBlocks将它们TextForeground属性设置为动态设置为语言和颜色字典中定义的资源,例如,

  1. Text="{DynamicResource WelcomeText}"
  2. Foreground="{DynamicResource ForegroundBrush}"

第二个TextBlock有一种巧妙的方式使用MultiBinding来绑定其文本——将单个目标绑定到多个源。这样做是为了扩展string自动插入的Window's Title属性值:

  1. <TextBlock.Text> <!-- Use multibinding to format the string -->
  2. <MultiBinding Converter="{x:Static np:StringFormatConverter.Instance}">
  3. <!-- pass the main string from a language dictionary -->
  4. <DynamicResourceExtension ResourceKey="WindowTitleText"/>
  5. <!-- pass window title as a string parameter -->
  6. <Binding Path="Title"
  7. RelativeSource="{RelativeSource AncestorType=Window}"/>
  8. </MultiBinding>
  9. </TextBlock.Text>

我们使用NP.Avalonia.Visuals包中StringFormatConverter定义的。它将第一个string作为格式,其余作为参数并调用它们的string.Format(string format, params object[] args)方法。多重绑定中的第一个绑定由DynamicResourceExtension提供(是的,在Avalonia中——DynamicResource只是一个绑定,因此它可以插入到MultiBinding中作为它的Binding子元素之一)。此绑定返回string格式(对于英语,应该是"Window Title is '{0}'")。 

第二个绑定返回要插入第一个string的窗口的标题(代替{0})。

现在看一下MainWindow.axaml.cs文件,它与上一个示例的同名文件非常相似,只是在这里,我们定义了两个ThemeLoader对象(_colorThemeLoader_languageThemeLoader)并将处理程序分配给4个而不是2个按钮的Click事件:

  1. public partial class MainWindow : Window
  2. {
  3. private ThemeLoader _colorThemeLoader;
  4. private ThemeLoader _languageThemeLoader;
  5. public MainWindow()
  6. {
  7. InitializeComponent();
  8. ...
  9. // find the color theme loader by name
  10. _colorThemeLoader =
  11. Application.Current.Resources.GetThemeLoader("ColorThemeLoader")!;
  12. // find the language theme loader by name
  13. _languageThemeLoader =
  14. Application.Current.Resources.GetThemeLoader("LanguageLoader")!;
  15. Button lightButton = this.FindControl<Button>("LightButton");
  16. lightButton.Click += LightButton_Click;
  17. Button darkButton = this.FindControl<Button>("DarkButton");
  18. darkButton.Click += DarkButton_Click;
  19. Button englishButton = this.FindControl<Button>("EnglishButton");
  20. englishButton.Click += EnglishButton_Click;
  21. Button hebrewButton = this.FindControl<Button>("HebrewButton");
  22. hebrewButton.Click += HebrewButton_Click;
  23. }
  24. private void LightButton_Click(object? sender, RoutedEventArgs e)
  25. {
  26. // set the theme to Light
  27. _colorThemeLoader.SelectedThemeId = "Light";
  28. }
  29. private void DarkButton_Click(object? sender, RoutedEventArgs e)
  30. {
  31. // set the theme to Dark
  32. _colorThemeLoader.SelectedThemeId = "Dark";
  33. }
  34. private void EnglishButton_Click(object? sender, RoutedEventArgs e)
  35. {
  36. // set language to English
  37. _languageThemeLoader.SelectedThemeId = "English";
  38. }
  39. private void HebrewButton_Click(object? sender, RoutedEventArgs e)
  40. {
  41. // set language to Hebrew
  42. _languageThemeLoader.SelectedThemeId = "Hebrew";
  43. }
  44. ...
  45. }

高级演示代码

我们已经在本文的介绍部分展示了高级演示,所以这里我们只讨论代码(位于NP.Demos.ThemingAndLocalizationDemo)。

从概念上讲,高级演示的代码除了上面简单示例中讨论的内容之外并没有包含太多新内容。更多属性被本地化,包括窗口和控件大小、应用程序流程(希伯来语是从右到左书写和查看的)、水平对齐等。此外RussianResources.asaml文件已添加到LanguageDictionaries中。

此演示中使用的一个功能值得特别讨论。该演示使用DynamicResourceBinding对象,例如,

  1. <TextBlock.Text>
  2. <MultiBinding Converter="{x:Static np:StringFormatConverter.Instance}">
  3. <np:DynamicResourceBinding Path="Uid"/>
  4. <Binding Path="ID"/>
  5. </MultiBinding>
  6. </TextBlock.Text>

DynamicResourceBinding结合了BindingDynamicResource的功能。它绑定到一个string或一个对象,然后将其用作DynamicResource的资源键。当提供资源键的属性或资源键指向的动态资源改变它们的值时,DynamicResourceBinding返回值将会改变。

我创建DynamicResourceBinding是为了匹配Tomer的自定义标记扩展提供的一些功能,但它对于自定义应用程序也非常有用。

我将在以后专门讨论NP.Avalonia.Visuals包功能的文章中详细介绍DynamicResourceBinding

结论

本文解释并提供了我在多平台桌面应用程序中构建和使用的基于Avalonia的主题化/本地化功能的详细示例。

此功能的灵感来自于Tomer Shamam编写的旧WPF包。

此功能是作为NP.Avalonia.Visuals nuget包和Github存储库的一部分在最简单和最宽松的MIT许可证下发布的——这本质上意味着您可以在任何应用程序中使用它,无论是否商业,只要您不责怪作者(我)可能的错误并提供简短的归因。

此处描述的所有示例均在Windows 10Mac CatalinaUbuntu 20.04机器上进行了测试。

https://www.codeproject.com/Articles/5317972/Theming-and-Localization-Functionality-for-Multipl

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/90620
推荐阅读
相关标签
  

闽ICP备14008679号