我有一个带有 DependencyProperty 的 DependencyObject:
public class DependencyObjectClass: DependencyObject
{
public static DependencyProperty BooleanValueProperty = DependencyProperty.Register("BooleanValue", typeof (bool), typeof (DependencyObjectClass));
public bool BooleanValue
{
get { return (bool)GetValue(BooleanValueProperty); }
set { SetValue(BooleanValueProperty, value); }
}
}
我也有我的数据源类:
public class DataSource: INotifyPropertyChanged
{
private bool _istrue;
public bool IsTrue
{
get { return _istrue; }
set
{
_istrue = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("IsTrue"));
}
}
public event PropertyChangedEventHandler PropertyChanged;
}
我正在尝试使用以下代码绑定上述两个对象:
var dependencyObject = new DependencyObjectClass();
var dataSource = new DataSource();
var binding = new Binding("IsTrue");
binding.Source = dataSource;
binding.Mode = BindingMode.TwoWay;
BindingOperations.SetBinding(dependencyObject, DependencyObjectClass.BooleanValueProperty, binding);
每当我更改 DependencyObjectClass 上的 BooleanValue 属性时,DataSource 都会做出反应,但反过来却不起作用(更改 DataSource 上的 IsTrue 属性对 DependencyObjectClass 没有任何作用)。
我究竟做错了什么?我是否必须手动处理 OnPropertyChanged 事件?如果是,那将有点令人失望,因为我希望这会自动完成。