MSDN: "WM_NCHITTEST - Returns HTCLIENT if the control style is

SS_NOTIFY; otherwise, returns HTTRANSPARENT. "
This commit is contained in:
Serge Ivanov 2000-06-01 22:46:51 +00:00 committed by Alexandre Julliard
parent 0a09482460
commit bfe15b12ad
1 changed files with 4 additions and 1 deletions

View File

@ -299,7 +299,10 @@ LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
goto END;
case WM_NCHITTEST:
lResult = HTTRANSPARENT;
if (wndPtr->dwStyle & SS_NOTIFY)
lResult = HTCLIENT;
else
lResult = HTTRANSPARENT;
goto END;
case WM_GETDLGCODE: