1 instantiation of WindowsComboBox
UIAutomationClientsideProviders (1)
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
86return new WindowsComboBox(hwnd, null, HostedByComboEx(hwnd), idChild);
19 references to WindowsComboBox
UIAutomationClientsideProviders (19)
MS\Internal\AutomationProxies\Main.cs (1)
49new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsComboBox.Create), "ComboBox"),
MS\Internal\AutomationProxies\WindowsComboBox.cs (7)
782if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && Misc.IsBitSet(NativeMethods.STATE_SYSTEM_PRESSED, cbInfo.stateButton)) 785WindowsComboBox cb = (WindowsComboBox) Create (hwnd, 0); 937if (!WindowsComboBox.GetComboInfo(_hwnd, ref cbInfo)) 970if (!WindowsComboBox.GetDroppedState (_hwnd)) 972WindowsComboBox.Expand (_hwnd); 976WindowsComboBox.Collapse (_hwnd);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
964if (WindowsComboBox.GetComboInfo(hwndParent, ref cbInfo) && cbInfo.hwndItem == _hwnd)
MS\Internal\AutomationProxies\WindowsListBox.cs (10)
90if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && (cbInfo.hwndCombo != IntPtr.Zero)) 92parent = (ProxyFragment)WindowsComboBox.Create(cbInfo.hwndCombo, 0); 94item = (int)WindowsComboBox.ComboChildren.List; 541if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && (cbInfo.hwndCombo != IntPtr.Zero)) 543WindowsComboBox cb = (WindowsComboBox)WindowsComboBox.Create(cbInfo.hwndCombo, 0); 736WindowsComboBox cb = (WindowsComboBox)_parent._parent; 1176ProxyFragment combo = (WindowsComboBox)_parent._parent;