Base:
property
AutoValidate
System.Windows.Forms.ContainerControl.AutoValidate
7 writes to AutoValidate
System.Windows.Forms.Tests (7)
System\Windows\Forms\UserControlTests.cs (7)
681AutoValidate = value 687control.AutoValidate = value; 706control.AutoValidate = AutoValidate.EnablePreventFocusChange; 711control.AutoValidate = AutoValidate.EnablePreventFocusChange; 716control.AutoValidate = AutoValidate.EnableAllowFocusChange; 722control.AutoValidate = AutoValidate.Disable; 732Assert.Throws<InvalidEnumArgumentException>("value", () => control.AutoValidate = value);
5 references to AutoValidate
System.Windows.Forms.Tests (5)
System\Windows\Forms\UserControlTests.cs (5)
683Assert.Equal(expected, control.AutoValidate); 688Assert.Equal(expected, control.AutoValidate); 707Assert.Equal(AutoValidate.EnablePreventFocusChange, control.AutoValidate); 712Assert.Equal(AutoValidate.EnablePreventFocusChange, control.AutoValidate); 717Assert.Equal(AutoValidate.EnableAllowFocusChange, control.AutoValidate);