我的客户模型如下。客户模型包含验证属性
客户模型.cs
[IsRequired()]
CustomerID - Int;
[IsRequired()]
CustomerName - String;
CustomerViewModel 包含以下 2 个属性 1. CustomerModel 的 ObservableCollection (这是下拉列表的绑定 Items 源) 2. 属性返回 CustromerModel 对象作为 Selected Item(绑定到 SelectedItem)
我的问题:
我如何提供ValidatesOnDataErrors=true
组合框?
我需要在 CustomerViewModel 中的 CustomerModel 属性上编写验证属性吗?
请建议...