5 instantiations of WindowsListBox
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\WindowsComboBox.cs (4)
317WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 353WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 653return new WindowsListBox(cbInfo.hwndList, this, (int)ComboChildren.List, true); 661return new WindowsListBox(hwndList, this, (int)ComboChildren.List, true);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
90WindowsListBox listbox = new WindowsListBox (hwnd, parent, item, parentedByCombo);
17 references to WindowsListBox
UIAutomationClientSideProviders (17)
MS\Internal\AutomationProxies\Main.cs (2)
38new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsListBox.Create), "ComboLBox"), // List portion of combo 39new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsListBox.Create), "ListBox"),
MS\Internal\AutomationProxies\NonClientArea.cs (2)
653ProxySimple el = (ProxySimple)WindowsListBox.Create(hwnd, idChild); 716el = (ProxyFragment)WindowsListBox.Create(hwnd, 0);
MS\Internal\AutomationProxies\WindowsComboBox.cs (3)
272return ((WindowsListBox) el).ElementProviderFromPoint (x, y); 317WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true); 353WindowsListBox listbox = new WindowsListBox(cbInfo.hwndList, this, 0, true);
MS\Internal\AutomationProxies\WindowsListBox.cs (10)
90WindowsListBox listbox = new WindowsListBox (hwnd, parent, item, parentedByCombo); 125ProxySimple el = (ProxyHwnd)WindowsListBox.Create(hwnd, 0); 443WindowsListBox wlb = (WindowsListBox)WindowsListBox.Create(hwnd, 0); 661_listBox = (WindowsListBox) parent; 712if (((WindowsListBox)_parent).IsParentedByCombo()) 910System.Diagnostics.Debug.Assert (_parent is WindowsListBox, "Invalid Parent for a Listbox Item"); 1116if (!((WindowsListBox)_parent).IsParentedByCombo()) 1195private WindowsListBox _listBox;