43 references to Collapsed
PresentationFramework (16)
System\Windows\Automation\Peers\ComboBoxAutomationPeer.cs (3)
220
return owner.IsDropDownOpen ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
;
230
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
231
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
System\Windows\Automation\Peers\DatePickerAutomationPeer.cs (1)
135
return ExpandCollapseState.
Collapsed
;
System\Windows\Automation\Peers\ExpanderAutomationPeer.cs (3)
108
return owner.IsExpanded ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
;
118
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
119
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
System\Windows\Automation\Peers\MenuItemAutomationPeer.cs (3)
231
ExpandCollapseState result = ExpandCollapseState.
Collapsed
;
301
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
302
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
System\Windows\Automation\Peers\TreeViewDataItemAutomationPeer.cs (3)
160
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
161
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
293
if (treeViewItemAutomationPeer != null && (treeViewItemAutomationPeer as IExpandCollapseProvider).ExpandCollapseState == ExpandCollapseState.
Collapsed
)
System\Windows\Automation\Peers\TreeViewItemAutomationPeer.cs (3)
290
return treeViewItem.IsExpanded ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
;
307
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
308
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
System.Windows.Controls.Ribbon (18)
Microsoft\Windows\Automation\Peers\RibbonAutomationPeer.cs (3)
277
return OwningRibbon.IsMinimized ? ExpandCollapseState.
Collapsed
: ExpandCollapseState.Expanded;
305
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
306
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
Microsoft\Windows\Automation\Peers\RibbonGroupAutomationPeer.cs (2)
133
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
134
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
Microsoft\Windows\Automation\Peers\RibbonGroupDataAutomationPeer.cs (1)
130
return wrapperGroup.IsDropDownOpen ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
;
Microsoft\Windows\Automation\Peers\RibbonMenuButtonAutomationPeer.cs (3)
196
ExpandCollapseState result = ExpandCollapseState.
Collapsed
;
267
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
268
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
Microsoft\Windows\Automation\Peers\RibbonMenuItemAutomationPeer.cs (2)
102
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
103
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
Microsoft\Windows\Automation\Peers\RibbonMenuItemDataAutomationPeer.cs (1)
204
ExpandCollapseState result = ExpandCollapseState.
Collapsed
;
Microsoft\Windows\Automation\Peers\RibbonQuickAccessToolBarAutomationPeer.cs (3)
88
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
89
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
127
return OwningToolBar.HasOverflowItems && OwningToolBar.IsOverflowOpen ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
;
Microsoft\Windows\Automation\Peers\RibbonTabAutomationPeer.cs (2)
144
oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
,
145
newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
);
Microsoft\Windows\Automation\Peers\RibbonTabDataAutomationPeer.cs (1)
124
return ExpandCollapseState.
Collapsed
;
UIAutomationClientSideProviders (9)
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
464
return (GetDroppedState (_hwnd)) ? ExpandCollapseState.Expanded : ExpandCollapseState.
Collapsed
;
MS\Internal\AutomationProxies\WindowsListBox.cs (2)
800
if (((IExpandCollapseProvider)_listBox._parent).ExpandCollapseState == ExpandCollapseState.
Collapsed
)
850
if (((IExpandCollapseProvider)_listBox._parent).ExpandCollapseState == ExpandCollapseState.
Collapsed
)
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (1)
445
return IsCollapsed() ? ExpandCollapseState.
Collapsed
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1773
return (IsSubmenuCollapsed()) ? ExpandCollapseState.
Collapsed
: ExpandCollapseState.Expanded;
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
514
return ExpandCollapseState.
Collapsed
;
MS\Internal\AutomationProxies\WindowsTreeView.cs (3)
1091
case ExpandCollapseState.
Collapsed
:
1121
case ExpandCollapseState.
Collapsed
:
1376
return (hasChildren) ? ExpandCollapseState.
Collapsed
: ExpandCollapseState.LeafNode;