我们通过对WPF的深入学习,可以知道,WPF中的属性可以分为两种,一种是依赖属性而另外一种则是附加属性。我们在这里将会重点介绍WPF附加属性。#t#
WPF附加属性是允许不同的子元素为 实际在父元素中定义的属性指定***值。例如:
Dock不是CheckBox的属性,而是定义在DockPanel中的。
用代码使用:
- DockPanel myDockPanel =
new DockPanel();- CheckBox myCheckBox =
new CheckBox();- myCheckBox.Content =
"Hello";- myDockPanel.Children.
Add(myCheckBox);- DockPanel.SetDock
(myCheckBox, Dock.Top);
如何创建WPF附加属性
1. 声明一个 DependencyProperty 类型的 public static readonly 字段,将附加属性定义为一个依赖项属性。
2. 使用 RegisterAttached 方法的返回值来定义此字段。例如:
- public class OwerClass :
DependencyObject- {
- public static string
GetAttachedPropertyName
(DependencyObject obj)- {
- return (string)obj.GetValue
(AttachedPropertyNameProperty);- }
- public static void SetAttached
PropertyName(DependencyObject
obj, string value)- {
- obj.SetValue(AttachedProperty
NameProperty, value);- }
- public static readonly
DependencyProperty Attached
PropertyNameProperty =- DependencyProperty.RegisterAttached
("AttachedPropertyName",
typeof(string), typeof(OwerClass),
new UIPropertyMetadata(0));- }
WPF附加属性小提示:
可以利用VS2008智能提示:在class里面输入propa,然后按Tab 自动生成基本内容:)
当前题目:WPF附加属性相关用途介绍
URL链接:http://www.csdahua.cn/qtweb/news11/418661.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网