10 references to EnableAllowFocusChange
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\ContainerControl.cs (2)
219if (value is < AutoValidate.Inherit or > AutoValidate.EnableAllowFocusChange) 1834validatedControlAllowsFocusChange = (autoValidateMode == AutoValidate.EnableAllowFocusChange);
System.Windows.Forms.Tests (8)
System\Windows\Forms\ContainerControlTests.cs (4)
282yield return new object[] { AutoValidate.EnableAllowFocusChange, AutoValidate.EnableAllowFocusChange }; 327control.AutoValidate = AutoValidate.EnableAllowFocusChange; 328Assert.Equal(AutoValidate.EnableAllowFocusChange, control.AutoValidate);
System\Windows\Forms\UserControlTests.cs (4)
673yield return new object[] { AutoValidate.EnableAllowFocusChange, AutoValidate.EnableAllowFocusChange }; 718control.AutoValidate = AutoValidate.EnableAllowFocusChange; 719Assert.Equal(AutoValidate.EnableAllowFocusChange, control.AutoValidate);