Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个日期选择器控件(开始日期和结束日期)。
用户应该能够选择开始日期和结束日期。
结束日期应该是 las then 并且不等于结束日期。
我想在用户当时离开结束日期(DatePicker 控件)时进行验证。
您已将结束日期时间与某些属性绑定???如果是,那么您可以像这样在其设置器上进行验证
private DateTime endDateTime public DateTime EndDateTime { get { return endDateTime;} set { ValidateEndTime(value); // your validation logic .. .. } }