2

在 WPF 中使用 IDataErrorInfo 时,有一种方法可以将参数传递给验证器。例如,我有一个 DueDate Datepicker。在验证新任务时,我想将允许的日期限制为今天或以后,但在编辑时,我需要在今天之前允许 DueDates,因为可以编辑过期的任务。

我在 Xaml (.Net 4.0) 中的 DatePicker

<DatePicker SelectedDate="{Binding Path=SelectedIssue.IssDueDate,
            ValidatesOnDataErrors=True}" />

我的 IErrorDataInfo

namespace OITaskManager.Model
{
    public partial class Issue : IDataErrorInfo
    {
    // I want to set these values from the Xaml
    public DateTime minDate = new DateTime(2009, 1, 1);
    public DateTime maxDate = new DateTime(2025, 12, 31);

    public string this[string columnName]
    {
        get
        {
            if (columnName == "IssDueDate")
            {
                if (IssDueDate < minDate || IssDueDate > maxDate)
                {
                    return "Due Date must be later than " + minDate.Date + 
                           " and earlier than " + maxDate.Date;                    
                }
                return null;
            }
            return null;
        }
    }
4

1 回答 1

2

您可以在绑定上使用自定义验证器。或者,您可以在 Issue 对象实例上维护一个 IsNew 内部状态,直到它不再被认为是新的。

于 2010-01-24T05:13:16.907 回答