diff --git a/Stylet/ValidatingModelBase.cs b/Stylet/ValidatingModelBase.cs index ef69aeb..a0044b0 100644 --- a/Stylet/ValidatingModelBase.cs +++ b/Stylet/ValidatingModelBase.cs @@ -282,7 +282,7 @@ namespace Stylet /// /// Gets a value indicating whether the entity has validation errors. /// - public bool HasErrors + public virtual bool HasErrors { get { return this.propertyErrors.Values.Any(x => x != null && x.Length > 0); } }