Base:
property
AutoValidate
System.Windows.Forms.ContainerControl.AutoValidate
7 writes to AutoValidate
System.Windows.Forms.Tests (7)
System\Windows\Forms\UserControlTests.cs (7)
683AutoValidate = value 689control.AutoValidate = value; 708control.AutoValidate = AutoValidate.EnablePreventFocusChange; 713control.AutoValidate = AutoValidate.EnablePreventFocusChange; 718control.AutoValidate = AutoValidate.EnableAllowFocusChange; 724control.AutoValidate = AutoValidate.Disable; 734Assert.Throws<InvalidEnumArgumentException>("value", () => control.AutoValidate = value);
5 references to AutoValidate
System.Windows.Forms.Tests (5)
System\Windows\Forms\UserControlTests.cs (5)
685Assert.Equal(expected, control.AutoValidate); 690Assert.Equal(expected, control.AutoValidate); 709Assert.Equal(AutoValidate.EnablePreventFocusChange, control.AutoValidate); 714Assert.Equal(AutoValidate.EnablePreventFocusChange, control.AutoValidate); 719Assert.Equal(AutoValidate.EnableAllowFocusChange, control.AutoValidate);