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

Avalonia PathIcon使用

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
PathIcon是一个Avalonia内置的控件,可以根据Geometry绘制一个图标。
源码

PathIcon间接继承TemplatedControl,只有一个Geometry类型的依赖属性Data:
  1. public class PathIcon : IconElement
  2. {
  3.     static PathIcon()
  4.     {
  5.         AffectsRender<PathIcon>(DataProperty);
  6.     }
  7.     public static readonly StyledProperty<Geometry> DataProperty =
  8.         AvaloniaProperty.Register<PathIcon, Geometry>(nameof(Data));
  9.     public Geometry Data
  10.     {
  11.         get { return GetValue(DataProperty); }
  12.         set { SetValue(DataProperty, value); }
  13.     }
  14. }
  15. public abstract class IconElement : TemplatedControl
  16. {
  17. }
复制代码
外观也很简单,一个Path,Data绑定PathIcon的属性Data,填充色绑定属性Foreground:
  1. <ControlTheme x:Key="{x:Type PathIcon}" TargetType="PathIcon">
  2.   <Setter Property="Background" Value="Transparent" />
  3.   <Setter Property="Height" Value="{DynamicResource IconElementThemeHeight}" />
  4.   <Setter Property="Width" Value="{DynamicResource IconElementThemeWidth}" />
  5.   <Setter Property="Template">
  6.     <ControlTemplate>
  7.       <Border Background="{TemplateBinding Background}">
  8.         <Viewbox Height="{TemplateBinding Height}" Width="{TemplateBinding Width}">
  9.           <Path Fill="{TemplateBinding Foreground}" Data="{TemplateBinding Data}" Stretch="Uniform" />
  10.         </Viewbox>
  11.       </Border>
  12.     </ControlTemplate>
  13.   </Setter>
  14. </ControlTheme>
复制代码
编辑Geometry

首先要创建Geometry,Avalonia UI Fluent Icons提供了一系列的图标集合,见https://avaloniaui.github.io/icons.html。获取所需的图标后,如果需要微调,可以使用Blend进行调整。
比如创建一个登陆窗口,需要一个账号、密码图标:

  • 打开Blend,创建一个WPF项目,新建一个UserControl;
  • 从Fluent Icons中查找账号相关的图标,复制Geometry的内容;
  • 在UserControl的布局中,添加一个Path,Data属性粘贴上述复制的内容;
  • 在编辑窗口中新增、删除或拖动控制点进行微调,在属性窗口中可以选择填充色、画笔颜色等;
  • 重复2-3-4,编辑密码图标;

使用PathIcon


  • 在创建的Avalonia项目中,添加一个资源字典文件,将使用Blend编辑的Geometry复制过来:
  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2.                     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3.    
  4.         <StreamGeometry x:Key="login">Blend编辑的账号图标...</StreamGeometry>
  5.         <StreamGeometry x:Key="password">Blend编辑的密码图标...</StreamGeometry>
  6. </ResourceDictionary>
复制代码

  • 将资源文件添加到App资源中:
  1. <Application.Resources>
  2.         <ResourceDictionary>
  3.                 <ResourceDictionary.MergedDictionaries>
  4.                         <ResourceInclude Source="avares://PathIconUsing/Contents/Icons.axaml"/>
  5.                 </ResourceDictionary.MergedDictionaries>
  6.         </ResourceDictionary>
  7. </Application.Resources>
复制代码

  • 编辑登陆窗口视图:


  • 添加两个TextBox,一个按钮,并调整布局;
  • TextBox的InnerLeftContent内容使用PathIcon控件,PathIcon的Data属性使用1中定义的Geometry,Foreground属性使用在Blend中设置的填充色;
  1. <Application.Resources>
  2.         <ResourceDictionary>
  3.                 <ResourceDictionary.MergedDictionaries>
  4.                         <ResourceInclude Source="avares://PathIconUsing/Contents/Icons.axaml"/>
  5.                 </ResourceDictionary.MergedDictionaries>
  6.         </ResourceDictionary>
  7. </Application.Resources><Application.Resources>
  8.         <ResourceDictionary>
  9.                 <ResourceDictionary.MergedDictionaries>
  10.                         <ResourceInclude Source="avares://PathIconUsing/Contents/Icons.axaml"/>
  11.                 </ResourceDictionary.MergedDictionaries>
  12.         </ResourceDictionary>
  13. </Application.Resources>       
复制代码
效果如下图:


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

本帖子中包含更多资源

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

x

举报 回复 使用道具