我已将DataGridView.Source属性设置为BindingList<T>
,其中T实现了INotifyPropertyChanged。
虽然它不起作用,当我单步执行代码时,我发现没有订阅PropertyChanged事件。如何让BindingList订阅此事件
答案 0 :(得分:1)
在寻找答案30分钟后,我自然会在发布问题后5秒钟自行解决。
我在INotifyPropertyChanged
上实施了MyClass
,但实际上我使用的是BindingSource<IMyClass>
而IMyClass
没有继承INotifyPropertyChanged
。一旦我确定它有效。