IDataErrorInfo - not seeing any error message even though one gets picked up
问题 I have ItemType that implements everything one would need for Validation with the help of IDataErrorInfo interface: #region IDataErrorInfo implementation //WPF doesn't need this one public string Error { get { return null; } } public string this[string propertyName] { get { return GetValidationError(propertyName); } } #endregion #region Validation public bool IsValid { get { foreach (string property in ValidatedProperties) { if (GetValidationError(property) != null) { return false; } } return