现在的位置: 首页 > 综合 > 正文

Silverlight 验证的一个注意事项

2012年12月03日 ⁄ 综合 ⁄ 共 178字 ⁄ 字号 评论关闭

public class Person

{

  [Required(ErrorMessage = "必填选项")]

  public string Name {set; get;}
}

 

如果 客户端 绑定时

      this.DataContext = new Person();  起不了验证的作用, 应改为

      this.DataContext = new Person { Name = ""};

抱歉!评论已关闭.