1 instantiation of WindowsComboBox
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
74return new WindowsComboBox(hwnd, null, HostedByComboEx(hwnd), idChild);
19 references to WindowsComboBox
UIAutomationClientSideProviders (19)
MS\Internal\AutomationProxies\Main.cs (1)
41new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsComboBox.Create), "ComboBox"),
MS\Internal\AutomationProxies\WindowsComboBox.cs (7)
769if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && Misc.IsBitSet(NativeMethods.STATE_SYSTEM_PRESSED, cbInfo.stateButton)) 772WindowsComboBox cb = (WindowsComboBox) Create (hwnd, 0); 924if (!WindowsComboBox.GetComboInfo(_hwnd, ref cbInfo)) 957if (!WindowsComboBox.GetDroppedState (_hwnd)) 959WindowsComboBox.Expand (_hwnd); 963WindowsComboBox.Collapse (_hwnd);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
903if (WindowsComboBox.GetComboInfo(hwndParent, ref cbInfo) && cbInfo.hwndItem == _hwnd)
MS\Internal\AutomationProxies\WindowsListBox.cs (10)
82if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && (cbInfo.hwndCombo != IntPtr.Zero)) 84parent = (ProxyFragment)WindowsComboBox.Create(cbInfo.hwndCombo, 0); 86item = (int)WindowsComboBox.ComboChildren.List; 533if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && (cbInfo.hwndCombo != IntPtr.Zero)) 535WindowsComboBox cb = (WindowsComboBox)WindowsComboBox.Create(cbInfo.hwndCombo, 0); 728WindowsComboBox cb = (WindowsComboBox)_parent._parent; 1168ProxyFragment combo = (WindowsComboBox)_parent._parent;