彩票走势图

WPF 4.5探秘之一 异步数据验证

原创|其它|编辑:郝浩|2012-08-22 02:19:33.000|阅读 1763 次

概述:详细讲述了WPF4.5的异步数据验证用法,并提供了其中的代码,对于WPF4.5的使用会起到一定的帮助作用。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

WPF 4.5里面有什么?更多WPF4.5探秘系列文章    

里面只有三样东西:

  • HasErrors:一个只读的boolean属性,这分辨如果对象作为一个整体时是否有验证error;
  • GetErrors:该方法对于一个给定的属性返回验证error;
  • ErrorsChanged:当发生新的error——或缺乏error——被检测到。就会生成这一事件。

需要说明的是,如果你返回false到HasErrors属性时,如果没有出现error就会发生绑定。

WPF4.5怎样使用?

您必须在每个绑定到你的对象ValidatesOnDataErrors属性设置为true。

在示例中创建了一个表单,显示对象的属性命名为“Person”。这里将解释如何在绑定中启用INotifyDataErrorInfo验证:

<TextBox Text="{Binding Name,Mode=TwoWay,ValidatesOnNotifyDataErrors=True}"/>

该绑定将自己为ErrorsChanged事件进行注册。每当绑定属性事件发生时,这些控制将自动显示error。前面已经指出,这只会出现在当HasErrors被设置为true时。

在验证Person类时发生了延迟。在设置任何属性时验证都将发生,但它会因“WaitSecondsBeforeValidation &rdquo;而延迟数秒。

保存每个属性下面的error并通过GetErros方法来提供。如果有其中的error出现那么HasErrors属性将返回为true。以下是实现代码:

public System.Collections.IEnumerable GetErrors(string propertyName)
{
List<string> errorsForName;
_errors.TryGetValue("Name", out errorsForName);
return errorsForName;
}

public bool HasErrors
{
get { return _errors.Values.FirstOrDefault(l => l.Count > 0) != null; }
}

private Dictionary<string, List<string>> _errors =
new Dictionary<string, List<string>>();

private void Validate()
{
Task waitTask = new Task(() => Thread.Sleep(
TimeSpan.FromSeconds(WaitSecondsBeforeValidation)));
waitTask.ContinueWith((_) => RealValidation());
waitTask.Start();
}

private object _lock = new object();
private void RealValidation()
{
lock (_lock)
{
//Validate Name
List<string> errorsForName;
if (!_errors.TryGetValue("Name", out errorsForName))
errorsForName = new List<string>();
else errorsForName.Clear();

if (String.IsNullOrEmpty(Name))
errorsForName.Add("The name can't be null or empty.");

_errors["Name"] = errorsForName;
if (errorsForName.Count > 0) RaiseErrorsChanged("Name");

//Validate Age
List<string> errorsForAge;
if (!_errors.TryGetValue("Age", out errorsForAge))
errorsForAge = new List<string>();
else errorsForAge.Clear();

if (Age <= 0)
errorsForAge.Add("The age must be greater than zero.");

_errors["Age"] = errorsForAge;
if (errorsForAge.Count > 0) RaiseErrorsChanged("Age");
}

最终,我创建了一个减低验证事件error发生的RaiseErrorsChanged方法:

public event EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;
public void RaiseErrorsChanged(string propertyName)
{
EventHandler<DataErrorsChangedEventArgs> handler = ErrorsChanged;
if (handler == null) return;
var arg = new DataErrorsChangedEventArgs(propertyName);
handler.Invoke(this, arg);
}


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:翻译

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP