3 writes to hwndItem
UIAutomationClientsideProviders (3)
MS\Internal\AutomationProxies\WindowsComboBox.cs (2)
547cbInfo.hwndItem = IntPtr.Zero; 555cbInfo.hwndItem = Misc.FindWindowEx(hwnd, IntPtr.Zero, "EDIT", null);
MS\Win32\NativeMethods.cs (1)
1501hwndItem = IntPtr.Zero;
12 references to hwndItem
UIAutomationClientsideProviders (12)
MS\Internal\AutomationProxies\WindowsComboBox.cs (11)
318if (cbInfo.hwndItem != IntPtr.Zero && IsEditableCombo()) 329WinEventTracker.AddToNotificationList( cbInfo.hwndItem, new WinEventTracker.ProxyRaiseEvents( EditPortionEvents ), editPortionEvents, counter ); 356if (cbInfo.hwndItem != IntPtr.Zero && IsEditableCombo()) 367WinEventTracker.RemoveToNotificationList( cbInfo.hwndItem, editPortionEvents, null, counter ); 394if (GetComboInfo(_hwnd, ref cbInfo) && SafeNativeMethods.IsWindowVisible(cbInfo.hwndItem)) 396WindowsEditBox editBox = new WindowsEditBox(cbInfo.hwndItem, null, -1); 545if (cbInfo.hwndItem == cbInfo.hwndCombo) 553if (cbInfo.hwndItem == IntPtr.Zero && IsComboEx (NativeMethodsSetLastError.GetAncestor (hwnd, NativeMethods.GA_PARENT))) 556if (cbInfo.hwndItem != IntPtr.Zero) 558result = Misc.GetWindowRect(cbInfo.hwndItem, ref cbInfo.rcItem); 588if (hwndFocused != hwnd && hwndFocused != cbInfo.hwndCombo && hwndFocused != cbInfo.hwndItem && hwndFocused != cbInfo.hwndList)
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
964if (WindowsComboBox.GetComboInfo(hwndParent, ref cbInfo) && cbInfo.hwndItem == _hwnd)