14 references to Selectable
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (2)
8448
if (((validationConstraints & ValidationConstraints.
Selectable
) == ValidationConstraints.
Selectable
&& !c.GetStyle(ControlStyles.Selectable))
System\Windows\Forms\Form.cs (1)
6492
/// equivalent to calling ValidateChildren(ValidationConstraints.Selectable). See <see cref="ValidationConstraints.
Selectable
"/>
System\Windows\Forms\Layout\Containers\ContainerControl.cs (2)
1846
/// equivalent to calling ValidateChildren(ValidationConstraints.Selectable). See <see cref="ValidationConstraints.
Selectable
"/>
1851
public virtual bool ValidateChildren() => ValidateChildren(ValidationConstraints.
Selectable
);
System\Windows\Forms\UserControl.cs (1)
220
/// equivalent to calling ValidateChildren(ValidationConstraints.Selectable). See <see cref="ValidationConstraints.
Selectable
"/>
System.Windows.Forms.Tests (8)
System\Windows\Forms\ContainerControlTests.cs (4)
996
yield return new object[] { ValidationConstraints.
Selectable
, true, 0, 1, 0, 0, 1, 1, 1 };
997
yield return new object[] { ValidationConstraints.
Selectable
, false, 1, 1, 0, 0, 1, 1, 1 };
1011
yield return new object[] { ValidationConstraints.ImmediateChildren | ValidationConstraints.
Selectable
| ValidationConstraints.Enabled | ValidationConstraints.Visible | ValidationConstraints.TabStop, true, 0, 0, 0, 0, 0, 0, 0 };
1012
yield return new object[] { ValidationConstraints.ImmediateChildren | ValidationConstraints.
Selectable
| ValidationConstraints.Enabled | ValidationConstraints.Visible | ValidationConstraints.TabStop, false, 1, 0, 0, 0, 0, 0, 0 };
System\Windows\Forms\UserControlTests.cs (4)
1462
yield return new object[] { ValidationConstraints.
Selectable
, true, 0, 1, 0, 0, 1, 1, 1 };
1463
yield return new object[] { ValidationConstraints.
Selectable
, false, 1, 1, 0, 0, 1, 1, 1 };
1477
yield return new object[] { ValidationConstraints.ImmediateChildren | ValidationConstraints.
Selectable
| ValidationConstraints.Enabled | ValidationConstraints.Visible | ValidationConstraints.TabStop, true, 0, 0, 0, 0, 0, 0, 0 };
1478
yield return new object[] { ValidationConstraints.ImmediateChildren | ValidationConstraints.
Selectable
| ValidationConstraints.Enabled | ValidationConstraints.Visible | ValidationConstraints.TabStop, false, 1, 0, 0, 0, 0, 0, 0 };