Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在绑定的情况下,例如
<TextBox Text={Binding Path=SomeItem.AnotherItem.Property} />
哪些类需要实现 INotifyDataErrorInfo:
AnotherItem
INotifyDataErrorInfo必须由拥有绑定属性的对象实现。
INotifyDataErrorInfo
如果您使用的是 MVVM 模式,则 INotifyDataErrorInfo 通常由视图模型实现。这个视图模型通常就是你的视图的数据上下文。