是什么让BindingList不能订阅PropertyChanged事件?

时间:2014-02-13 09:55:46

标签: c# datagridview inotifypropertychanged

我已将DataGridView.Source属性设置为BindingList<T>,其中T实现了INotifyPropertyChanged。

虽然它不起作用,当我单步执行代码时,我发现没有订阅PropertyChanged事件。如何让BindingList订阅此事件

1 个答案:

答案 0 :(得分:1)

在寻找答案30分钟后,我自然会在发布问题后5秒钟自行解决。

我在INotifyPropertyChanged上实施了MyClass,但实际上我使用的是BindingSource<IMyClass>IMyClass没有继承INotifyPropertyChanged。一旦我确定它有效。