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