1 instantiation of WindowsComboBox
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
69return new WindowsComboBox(hwnd, null, HostedByComboEx(hwnd), idChild);
19 references to WindowsComboBox
UIAutomationClientSideProviders (19)
MS\Internal\AutomationProxies\Main.cs (1)
37new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsComboBox.Create), "ComboBox"),
MS\Internal\AutomationProxies\WindowsComboBox.cs (7)
760if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && Misc.IsBitSet(NativeMethods.STATE_SYSTEM_PRESSED, cbInfo.stateButton)) 763WindowsComboBox cb = (WindowsComboBox) Create (hwnd, 0); 909if (!WindowsComboBox.GetComboInfo(_hwnd, ref cbInfo)) 942if (!WindowsComboBox.GetDroppedState (_hwnd)) 944WindowsComboBox.Expand (_hwnd); 948WindowsComboBox.Collapse (_hwnd);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
900if (WindowsComboBox.GetComboInfo(hwndParent, ref cbInfo) && cbInfo.hwndItem == _hwnd)
MS\Internal\AutomationProxies\WindowsListBox.cs (10)
77if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && (cbInfo.hwndCombo != IntPtr.Zero)) 79parent = (ProxyFragment)WindowsComboBox.Create(cbInfo.hwndCombo, 0); 81item = (int)WindowsComboBox.ComboChildren.List; 522if (WindowsComboBox.GetComboInfo(hwnd, ref cbInfo) && (cbInfo.hwndCombo != IntPtr.Zero)) 524WindowsComboBox cb = (WindowsComboBox)WindowsComboBox.Create(cbInfo.hwndCombo, 0); 714WindowsComboBox cb = (WindowsComboBox)_parent._parent; 1154ProxyFragment combo = (WindowsComboBox)_parent._parent;