1

我有一个文本框,我只想根据复选框值验证其文本。检查时使用验证,未检查时不验证。

我可以让它验证得很好,并且红色框出现在它周围,但是当我不想验证它时,文本框周围的红色框仍然存在。我尝试清除文本框上的绑定,但没有运气。

4

1 回答 1

1

在您的情况下,您需要实现自定义验证,如下所示:

public class TestModel : ValidationRule
{
    public bool IsChecked { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }

    public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
    {
        if (IsChecked)
        {
            if (string.IsNullOrEmpty(FirstName))
            {
                return new ValidationResult(false, "FirstName requierd.");
            }
        }
        return new ValidationResult(true, null);
    }
}

希望这有帮助。

于 2012-08-10T22:01:31.877 回答