监听WPF依赖属性

当我们使用依赖属性的时候,有时需要监听它的变化,这在写自定义控件的时候十分有用,
下面介绍一种简单的方法。
 
如下使用DependencyPropertyDescriptor
 
DependencyPropertyDescriptor prop = DependencyPropertyDescriptor.FromProperty(
,
 


prop.AddValueChanged(this, this.OnMyDependencyPropertyChanged);
 
OnMyDependencyPropertyChanged为处理依赖属性变化的事件。
 

转载于:https://www.cnblogs.com/tianhonghui/archive/2011/08/12/2135680.html

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