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