3 writes to hwndItem
UIAutomationClientSideProviders (3)
MS\Internal\AutomationProxies\WindowsComboBox.cs (2)
525cbInfo.hwndItem = IntPtr.Zero; 533cbInfo.hwndItem = Misc.FindWindowEx(hwnd, IntPtr.Zero, "EDIT", null);
MS\Win32\NativeMethods.cs (1)
1482hwndItem = IntPtr.Zero;
12 references to hwndItem
UIAutomationClientSideProviders (12)
MS\Internal\AutomationProxies\WindowsComboBox.cs (11)
300if (cbInfo.hwndItem != IntPtr.Zero && IsEditableCombo()) 309WinEventTracker.AddToNotificationList(cbInfo.hwndItem, new WinEventTracker.ProxyRaiseEvents(EditPortionEvents), editPortionEvents); 336if (cbInfo.hwndItem != IntPtr.Zero && IsEditableCombo()) 345WinEventTracker.RemoveToNotificationList(cbInfo.hwndItem, editPortionEvents, null); 372if (GetComboInfo(_hwnd, ref cbInfo) && SafeNativeMethods.IsWindowVisible(cbInfo.hwndItem)) 374WindowsEditBox editBox = new WindowsEditBox(cbInfo.hwndItem, null, -1); 523if (cbInfo.hwndItem == cbInfo.hwndCombo) 531if (cbInfo.hwndItem == IntPtr.Zero && IsComboEx (NativeMethodsSetLastError.GetAncestor (hwnd, NativeMethods.GA_PARENT))) 534if (cbInfo.hwndItem != IntPtr.Zero) 536result = Misc.GetWindowRect(cbInfo.hwndItem, ref cbInfo.rcItem); 566if (hwndFocused != hwnd && hwndFocused != cbInfo.hwndCombo && hwndFocused != cbInfo.hwndItem && hwndFocused != cbInfo.hwndList)
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
900if (WindowsComboBox.GetComboInfo(hwndParent, ref cbInfo) && cbInfo.hwndItem == _hwnd)