赞
踩
Extended WPF Toolkit 可以说是WPF Toolkit 的一个补充,也包含了许多WPF 控件供开发者使用。最新版为4.2.0.
1,官方网站:
https://github.com/xceedsoftware/wpftoolkit
2,官网例子下载:
https://github.com/xceedsoftware/wpftoolkit/archive/refs/heads/master.zip
3,通过Nuget 安装
4,例子
1,数字控件
2,按钮带图标控件
3,文本控件
5,简单使用
例如使用一个带图标的按钮控件,具体参考官网的例子
1,在xaml中加入 xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
<local:DemoView.Resources>
<xctk:SolidColorBrushToColorConverter x:Key="SolidColorBrushToColorConverter" />
<Image x:Key="Image1"
Source="../Resources/PencilTool16.png"
Width="20"
Margin="5" />
</local:DemoView.Resources>
<xctk:IconButton x:Name="_iconButton"
Content="Test"
Icon="{StaticResource Image1}"
IconLocation="Left"
MouseOverForeground="Black"
MousePressedForeground="White"
MouseOverBackground="LightBlue"
MousePressedBackground="Blue"
MouseOverBorderBrush="LightGray"
MousePressedBorderBrush="LightGray"
Margin="10"
Padding="20,3"
HorizontalAlignment="Center">
</xctk:IconButton>
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。