WPF 依赖属性

依赖属性,简单的说,在WPF控件应用过程中,界面上直接可以引用的属性

如:

Content称为Button的依赖属性

当我们自定义控件时,如何添加依赖属性呢

1、添加属性

        /// 
        /// get or set the items
        /// 
        public List TitleListItems
        {
            get
            {
                return (List) GetValue(TitleListItemsProperty)
            }
            set{SetValue(TitleListItemsProperty,value);};
        }

2、注册属性

        public static readonly DependencyProperty TitleListItemsProperty = DependencyProperty.Register("TitleListItems", typeof(List),
            typeof(TitleListControl),new PropertyMetadata(new List()));

然后在应用自定义控件时,就能直接设置属性了,例如:

TitleListItems属性可以直接在界面上添加
        "Center">
            
                "AAA" Text="aa">
                "bb" Text="BB">
                "ccc" Text="CC">
            
        

 

你可能感兴趣的:(WPF 依赖属性)