5 instantiations of WindowsListBox
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\WindowsComboBox.cs (4)
318WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 354WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 654return new WindowsListBox(cbInfo.hwndList, this, (int)ComboChildren.List, true); 662return new WindowsListBox(hwndList, this, (int)ComboChildren.List, true);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
91WindowsListBox listbox = new WindowsListBox (hwnd, parent, item, parentedByCombo);
17 references to WindowsListBox
UIAutomationClientSideProviders (17)
MS\Internal\AutomationProxies\Main.cs (2)
39new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsListBox.Create), "ComboLBox"), // List portion of combo 40new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsListBox.Create), "ListBox"),
MS\Internal\AutomationProxies\NonClientArea.cs (2)
654ProxySimple el = (ProxySimple)WindowsListBox.Create(hwnd, idChild); 717el = (ProxyFragment)WindowsListBox.Create(hwnd, 0);
MS\Internal\AutomationProxies\WindowsComboBox.cs (3)
273return ((WindowsListBox) el).ElementProviderFromPoint (x, y); 318WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 354WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true);
MS\Internal\AutomationProxies\WindowsListBox.cs (10)
91WindowsListBox listbox = new WindowsListBox (hwnd, parent, item, parentedByCombo); 126ProxySimple el = (ProxyHwnd)WindowsListBox.Create(hwnd, 0); 444WindowsListBox wlb = (WindowsListBox)WindowsListBox.Create(hwnd, 0); 662_listBox = (WindowsListBox) parent; 713if (((WindowsListBox)_parent).IsParentedByCombo()) 911System.Diagnostics.Debug.Assert (_parent is WindowsListBox, "Invalid Parent for a Listbox Item"); 1117if (!((WindowsListBox)_parent).IsParentedByCombo()) 1196private WindowsListBox _listBox;