コード例 #1
0
        public override void Remove(string key)
        {
            var item = ErrorDictionary.FirstOrDefault(e => e.PropertyName == key);

            if (item != null)
            {
                ErrorDictionary.Remove(item);
            }
        }
コード例 #2
0
 internal void RemoveError(string propertyName)
 {
     ErrorDictionary.Remove(propertyName);
     RaisePropertyChanged("Error");
 }