博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF教程:附加属性
阅读量:6106 次
发布时间:2019-06-21

本文共 3090 字,大约阅读时间需要 10 分钟。

一、附加属性的特点

1、特殊的依赖属性
2、用于非定义该属性的类 例如Grid面板的RowDefinition、ColumnDefinition、Canvas面板的Left、Right
DockPanel面板的Dock都是附加属性。

二、附加属性的定义

1、声明数据属性变量。 public static 的DependencyProperty类型的变量。

2、在属性系统中进行注册,使用DependencyProperty.RegisterAttached()方法来注册,方法参数和注册依赖属性时Register()方法的参数一致。
3、调用静态方法设置和获取属性值。通过调用DependencyObject的SetValue()和GetValue()方法来设置和获取属性的值。
两个方法应该命名为SetPropertyName()方法和GetPropertyName()方法。

三、示例演示附加属性

实现的功能,窗体字体的大小随TextBox控件里面输入的值的大小而改变。

1、新建WPF版的用户控件,命名为“MyDependencyProperty”,在用户控件里面添加TextBox和TextBlock控件

XAML代码:

1 
9
10
11
13
通过附加属性修改FontSize的大小
14
15
16

设计界面:

2、、在MyDependencyProperty.xaml.cs文件里面添加附件属性,附件属性的名称为MyAttachedFontSize,使用快捷方式创建附件属性:输入propa,连续按两下Tab健。

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Windows; 7 using System.Windows.Controls; 8 using System.Windows.Data; 9 using System.Windows.Documents;10 using System.Windows.Input;11 using System.Windows.Media;12 using System.Windows.Media.Imaging;13 using System.Windows.Navigation;14 using System.Windows.Shapes;15 16 namespace WPFDependencyProperty17 {18     /// 19     /// MyDependencyProperty.xaml 的交互逻辑20     /// 21     public partial class MyDependencyProperty : UserControl22     {23         public MyDependencyProperty()24         {25             InitializeComponent();26         }27 28 29 30         public static int GetMyAttachedFontSize(DependencyObject obj)31         {32             return (int)obj.GetValue(MyAttachedFontSizeProperty);33         }34 35         public static void SetMyAttachedFontSize(DependencyObject obj, int value)36         {37             obj.SetValue(MyAttachedFontSizeProperty, value);38         }39 40         // Using a DependencyProperty as the backing store for MyAttachedFontSize.  This enables animation, styling, binding, etc...41         public static readonly DependencyProperty MyAttachedFontSizeProperty =42             DependencyProperty.RegisterAttached("MyAttachedFontSize", typeof(int), typeof(MyDependencyProperty),43             new PropertyMetadata((s, e) => 44             {45                 //获取MyDependencyProperty用户控件,s代表Textbox,46                 //MyDependencyProperty用户控件是TextBox的父级的父级的父级控件47                 var mdp = (((s as FrameworkElement).Parent as FrameworkElement).Parent48                     as FrameworkElement).Parent as MyDependencyProperty;49                 //更改用户控件的FontSize的值50                 if (mdp != null && e.NewValue != null)51                 {52                     var fontsize = 9;53                     int.TryParse(e.NewValue.ToString(), out fontsize);54                     mdp.FontSize = fontsize;55                 }56             }));57 58         59     }60 }

3、在主界面测试附件属性

1 
6
7
8
请输入字体的大小
9
10
11
12

程序运行效果:

在TextBox里面输入3:

在TextBox里面输入30:

转载地址:http://lthza.baihongyu.com/

你可能感兴趣的文章
mysql操作入门基础之对数据库和表的增删改查
查看>>
IIS负载均衡
查看>>
分布式事务,EventBus 解决方案:CAP【中文文档】
查看>>
Linux下的CPU性能瓶颈分析案例
查看>>
spring mvc入门
查看>>
2012在数据库技术会议上的讲话PPT打包
查看>>
【Android】 TextView设置个别字体样式
查看>>
python svn
查看>>
raise语句
查看>>
sequence2(高精度dp)
查看>>
如何向 Linux 内核上游提交 Patch ?
查看>>
Go编程笔记(7)
查看>>
Go语言int类型绑定方法
查看>>
pid控制的文章
查看>>
MySQL中EXPLAIN命令详解
查看>>
redis 单点部署
查看>>
Java中需要编码的场景
查看>>
PHP生成word的三种方式
查看>>
设计模式(九)——桥接模式
查看>>
xen 创建本地存储
查看>>