首页 > 代码库 > WPF 依赖属性
WPF 依赖属性
依赖属性,简单的说,在WPF控件应用过程中,界面上直接可以引用的属性
如:<Button Content="aaa"></Button>
Content称为Button的依赖属性
当我们自定义控件时,如何添加依赖属性呢
1、添加属性
/// <summary> /// get or set the items /// </summary> public List<TitleListItemModel> TitleListItems { get { return (List<TitleListItemModel>) GetValue(TitleListItemsProperty) } set{SetValue(TitleListItemsProperty,value);}; }
2、注册属性
public static readonly DependencyProperty TitleListItemsProperty = DependencyProperty.Register("TitleListItems", typeof(List<TitleListItemModel>), typeof(TitleListControl),new PropertyMetadata(new List<TitleListItemModel>()));
然后在应用自定义控件时,就能直接设置属性了,例如:
TitleListItems属性可以直接在界面上添加
<wpfApplication6:TitleListControl VerticalAlignment="Center"> <wpfApplication6:TitleListControl.TitleListItems> <wpfApplication6:TitleListItemModel Name="AAA" Text="aa"></wpfApplication6:TitleListItemModel> <wpfApplication6:TitleListItemModel Name="bb" Text="BB"></wpfApplication6:TitleListItemModel> <wpfApplication6:TitleListItemModel Name="ccc" Text="CC"></wpfApplication6:TitleListItemModel> </wpfApplication6:TitleListControl.TitleListItems> </wpfApplication6:TitleListControl>
WPF 依赖属性
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。