9 references to HTCLIENT
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ComboBox.cs (1)
1947if (Cursor != DefaultCursor && childEdit != null && m.HWnd == childEdit.Handle && NativeMethods.Util.LOWORD(m.LParam) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\Control.cs (2)
2092SendMessage(NativeMethods.WM_SETCURSOR, Handle, (IntPtr)NativeMethods.HTCLIENT); 13818if (m.WParam == InternalHandle && NativeMethods.Util.LOWORD(m.LParam) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\Label.cs (1)
1741m.Result = (IntPtr)((rectInScreen.Contains(pt) ? NativeMethods.HTCLIENT : NativeMethods.HTNOWHERE));
winforms\Managed\System\WinForms\LinkLabel.cs (2)
410SendMessage(NativeMethods.WM_SETCURSOR, Handle, NativeMethods.HTCLIENT); 1924if (m.WParam == InternalHandle && NativeMethods.Util.LOWORD(m.LParam) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\SplitContainer.cs (2)
591SendMessage(NativeMethods.WM_SETCURSOR, Handle, NativeMethods.HTCLIENT); 2350if (m.WParam == InternalHandle && ((int)m.LParam & 0x0000FFFF) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\StatusBar.cs (1)
1149m.Result = (IntPtr)NativeMethods.HTCLIENT;