我有一个绑定到一个对象的数据表单,该对象的属性装饰有System.ObjectModel.DataAnnotation
用于验证的属性。
我面临的问题是这个类的一些属性只是有条件地需要,不需要验证。例如,当应用程序的管理员决定编辑用户时,他或她可能会输入密码/密码确认/密码问题/密码答案。或者他/她可能完全跳过这些属性。
因此,如果管理员决定输入这 4 个字段中的任何一个,它们都必须存在,并且必须应用所有这些字段的验证规则。但是,如果管理员只想更改 FirstName、LastName、Email 或任何其他任意属性 - 不需要验证与密码相关的字段。
有没有办法从验证过程中“排除”它们?
这是我使用的对象的示例:
public class RegistrationData
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string PasswordConfirm { get; set; }
public string PasswordQuestion { get; set; }
public string PasswordAnswer { get; set; }
}
我在 Xaml 中有一个名为 registrationForm 的 DataForm,我得到的错误在这段代码中:
private void RegistrationButton_Click(object sender, RoutedEventArgs e)
{
if( this.registerForm.ValidateItem() )
{
//Does not pass validaton if the password properties are not filled in.
}
}
关于如何解决它的任何想法?
我正在考虑使用两个 DataForms ......并将用户对象一分为二,但这涉及很多代码......