9 references to UIA_CheckBoxControlTypeId
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\AccessibleRoleControlTypeMap.cs (1)
26
{ AccessibleRole.CheckButton, UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
},
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs (1)
141
UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
,
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxItemAccessibleObject.cs (1)
48
UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
,
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\AnchorEditorTests.cs (1)
96
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
, actual);
System.Windows.Forms.Tests (5)
System\Windows\Forms\AccessibleObjects\CheckBox.CheckBoxAccessibleObjectTests.cs (1)
210
[InlineData((int)UIA_PROPERTY_ID.UIA_ControlTypePropertyId, (int)UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
)] // If AccessibleRole is Default
System\Windows\Forms\AccessibleObjects\DataGridViewCheckBoxCellAccessibleObjectTests.cs (1)
61
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
, (UIA_CONTROLTYPE_ID)(int)accessibleObject.GetPropertyValue(UIA_PROPERTY_ID.UIA_ControlTypePropertyId));
System\Windows\Forms\AccessibleObjects\ToolStripButton.ToolStripButtonAccessibleObjectTests.cs (2)
107
UIA_CONTROLTYPE_ID expected = UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
;
121
UIA_CONTROLTYPE_ID expected = UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
;
System\Windows\Forms\AccessibleRoleControlTypeMapTests.cs (1)
54
yield return new object[] { AccessibleRole.CheckButton, UIA_CONTROLTYPE_ID.
UIA_CheckBoxControlTypeId
};