关于DataGrid数据验证显示的问题
我的Reference.cs文件里的字段如下:
[Required(ErrorMessage = "调度数量必填!")] [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=66)] public System.Nullable<double> 调度数量 { get { return this.调度数量Field; } set { if (value <= this.订单数 - 调度总数 ) { Validator.ValidateProperty(value, new ValidationContext(this, null, null) { MemberName = "调度数量" }); if ((this.调度数量Field.Equals(value) != true)) { this.调度数量Field = value; this.RaisePropertyChanged("调度数量"); } } else { throw new System.Exception("调度数量不合法!"); } } }