18 implementations of ExpandCollapseState
PresentationCore (1)
MS\Internal\Automation\ExpandCollapseProviderWrapper.cs (1)
68public ExpandCollapseState ExpandCollapseState
PresentationFramework (6)
System\Windows\Automation\Peers\ComboBoxAutomationPeer.cs (1)
215ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
System\Windows\Automation\Peers\DatePickerAutomationPeer.cs (1)
125ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
System\Windows\Automation\Peers\ExpanderAutomationPeer.cs (1)
103ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
System\Windows\Automation\Peers\MenuItemAutomationPeer.cs (1)
227ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
System\Windows\Automation\Peers\TreeViewDataItemAutomationPeer.cs (1)
138ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
System\Windows\Automation\Peers\TreeViewItemAutomationPeer.cs (1)
284ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Automation\Peers\RibbonAutomationPeer.cs (1)
273public ExpandCollapseState ExpandCollapseState
Microsoft\Windows\Automation\Peers\RibbonGroupDataAutomationPeer.cs (1)
123ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
Microsoft\Windows\Automation\Peers\RibbonMenuButtonAutomationPeer.cs (1)
192ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
Microsoft\Windows\Automation\Peers\RibbonMenuItemDataAutomationPeer.cs (1)
194ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
Microsoft\Windows\Automation\Peers\RibbonQuickAccessToolBarAutomationPeer.cs (1)
123public ExpandCollapseState ExpandCollapseState
Microsoft\Windows\Automation\Peers\RibbonTabDataAutomationPeer.cs (1)
107ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
460ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (1)
441ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1769ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
505ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
MS\Internal\AutomationProxies\WindowsTreeView.cs (1)
1128ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState
11 references to ExpandCollapseState
PresentationCore (1)
MS\Internal\Automation\ExpandCollapseProviderWrapper.cs (1)
116return _iface.ExpandCollapseState;
PresentationFramework (5)
System\Windows\Automation\Peers\ComboBoxAutomationPeer.cs (1)
117if(((IExpandCollapseProvider)this).ExpandCollapseState == ExpandCollapseState.Expanded)
System\Windows\Automation\Peers\ListBoxItemAutomationPeer.cs (1)
47if (iecp.ExpandCollapseState != ExpandCollapseState.Expanded)
System\Windows\Automation\Peers\MenuItemAutomationPeer.cs (1)
164if (ExpandCollapseState.Expanded == ((IExpandCollapseProvider)this).ExpandCollapseState)
System\Windows\Automation\Peers\TreeViewDataItemAutomationPeer.cs (2)
146return iExpandCollapseProvider.ExpandCollapseState; 293if (treeViewItemAutomationPeer != null && (treeViewItemAutomationPeer as IExpandCollapseProvider).ExpandCollapseState == ExpandCollapseState.Collapsed)
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (1)
216RaisePropertyChangedEvent(el, ExpandCollapsePattern.ExpandCollapseStateProperty, expandCollapse.ExpandCollapseState);
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
163return ((IExpandCollapseProvider)this).ExpandCollapseState;
MS\Internal\AutomationProxies\WindowsListBox.cs (2)
800if (((IExpandCollapseProvider)_listBox._parent).ExpandCollapseState == ExpandCollapseState.Collapsed) 850if (((IExpandCollapseProvider)_listBox._parent).ExpandCollapseState == ExpandCollapseState.Collapsed)
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1043object propertyValue = ((IExpandCollapseProvider)parent).ExpandCollapseState;