2 writes to childEdit
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ComboBox.cs (2)
2454childEdit = new ComboBoxChildNativeWindow(this, ChildWindowType.Edit); 3090childEdit = null;
39 references to childEdit
System.Windows.Forms (39)
winforms\Managed\System\WinForms\ComboBox.cs (39)
379childEditAccessibleObject = new ComboBoxChildEditUiaProvider(this, childEdit.Handle); 655return focus != IntPtr.Zero && ((childEdit != null && focus == childEdit.Handle) || (childListBox != null && focus == childListBox.Handle)); 1130Debug.Assert(childEdit != null); 1131if (childEdit != null) { 1132UnsafeNativeMethods.SendMessage(new HandleRef(this, childEdit.Handle), NativeMethods.EM_REPLACESEL, NativeMethods.InvalidIntPtr, str); 1602if (childEdit == null) { 1613UnsafeNativeMethods.GetWindowRect(new HandleRef(this, childEdit.Handle), ref editRectMid); 1755if (!DesignMode && (childEdit != null && m.HWnd == childEdit.Handle) && !LocalAppContextSwitches.EnableLegacyIMEFocusInComboBox) { 1768if (childEdit != null && m.HWnd == childEdit.Handle) { 1769UnsafeNativeMethods.SendMessage(new HandleRef(this, childEdit.Handle), NativeMethods.EM_SETMARGINS, 1947if (Cursor != DefaultCursor && childEdit != null && m.HWnd == childEdit.Handle && NativeMethods.Util.LOWORD(m.LParam) == NativeMethods.HTCLIENT) { 1996if (childEdit != null) { 1998if (m.HWnd == childEdit.Handle) { 1999childWindow = childEdit; 2048if (childEdit != null && childEdit.Handle != IntPtr.Zero) { 2049SafeNativeMethods.InvalidateRect(new HandleRef(this, childEdit.Handle), null, false); 2434Debug.Assert(childEdit == null, "Child edit window already attached"); 2437bool ok = childEdit == null && childListBox == null; 2455childEdit.AssignHandle(hwnd); 2459UnsafeNativeMethods.SendMessage(new HandleRef(this, childEdit.Handle), NativeMethods.EM_SETMARGINS, 3086if (childEdit != null) { 3089childEdit.ReleaseHandle(); 3146if (!IsHandleCreated || childEdit == null) { 3165SafeNativeMethods.SHAutoComplete(new HandleRef(this, childEdit.Handle), mode); 3172if (!stringSource.Bind(new HandleRef(this, childEdit.Handle), (int)AutoCompleteMode)) { 3189SafeNativeMethods.SHAutoComplete(new HandleRef(this, childEdit.Handle), mode); 3196if (!stringSource.Bind(new HandleRef(this, childEdit.Handle), (int)AutoCompleteMode)) { 3212SafeNativeMethods.SHAutoComplete(new HandleRef(this, childEdit.Handle), mode); 3229int ret = SafeNativeMethods.SHAutoComplete(new HandleRef(this, childEdit.Handle), (int)AutoCompleteSource | mode); 3239SafeNativeMethods.SHAutoComplete(new HandleRef(this, childEdit.Handle), mode); 3442if (childEdit != null && childEdit.Handle != IntPtr.Zero) { 3443UnsafeNativeMethods.SendMessage(new HandleRef(this, childEdit.Handle), NativeMethods.WM_SETTEXT, IntPtr.Zero, s); 4915if (hwnd == _owningComboBox.childEdit.Handle) {