8 references to AccessibleActionExpand
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxAccessibleObject.cs (1)
106return owner.DroppedDown ? SR.AccessibleActionCollapse : SR.AccessibleActionExpand;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.DateTimePickerAccessibleObject.cs (1)
100ExpandCollapseState.ExpandCollapseState_Collapsed => SR.AccessibleActionExpand,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (1)
47return SR.AccessibleActionExpand;
System\Windows\Forms\Controls\TreeView\TreeNode.TreeNodeAccessibleObject.cs (1)
55: SR.AccessibleActionExpand;
System.Windows.Forms.Tests (4)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxAccessibleObjectTests.cs (2)
338yield return new object[] { ComboBoxStyle.DropDown, false, SR.AccessibleActionExpand }; 340yield return new object[] { ComboBoxStyle.DropDownList, false, SR.AccessibleActionExpand };
System\Windows\Forms\AccessibleObjects\DateTimePicker.DateTimePickerAccessibleObjectTests.cs (1)
302yield return new object[] { false, SR.AccessibleActionExpand };
System\Windows\Forms\AccessibleObjects\TreeNode.TreeNodeAccessibleObjectTests.cs (1)
67string expected = isExpanded ? SR.AccessibleActionCollapse : SR.AccessibleActionExpand;