5 instantiations of WindowsListBox
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\WindowsComboBox.cs (4)
324WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 362WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 662return new WindowsListBox(cbInfo.hwndList, this, (int)ComboChildren.List, true); 670return new WindowsListBox(hwndList, this, (int)ComboChildren.List, true);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
95WindowsListBox listbox = new WindowsListBox (hwnd, parent, item, parentedByCombo);
17 references to WindowsListBox
UIAutomationClientSideProviders (17)
MS\Internal\AutomationProxies\Main.cs (2)
42new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsListBox.Create), "ComboLBox"), // List portion of combo 43new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsListBox.Create), "ListBox"),
MS\Internal\AutomationProxies\NonClientArea.cs (2)
667ProxySimple el = (ProxySimple)WindowsListBox.Create(hwnd, idChild); 736el = (ProxyFragment)WindowsListBox.Create(hwnd, 0);
MS\Internal\AutomationProxies\WindowsComboBox.cs (3)
277return ((WindowsListBox) el).ElementProviderFromPoint (x, y); 324WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 362WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true);
MS\Internal\AutomationProxies\WindowsListBox.cs (10)
95WindowsListBox listbox = new WindowsListBox (hwnd, parent, item, parentedByCombo); 130ProxySimple el = (ProxyHwnd)WindowsListBox.Create(hwnd, 0); 451WindowsListBox wlb = (WindowsListBox)WindowsListBox.Create(hwnd, 0); 675_listBox = (WindowsListBox) parent; 726if (((WindowsListBox)_parent).IsParentedByCombo()) 924System.Diagnostics.Debug.Assert (_parent is WindowsListBox, "Invalid Parent for a Listbox Item"); 1130if (!((WindowsListBox)_parent).IsParentedByCombo()) 1209private WindowsListBox _listBox;