16,551
社区成员
发帖
与我相关
我的任务
分享
BOOL CMyCtrl::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message==WM_LBUTTONDOWN)
{
FromHandle(pMsg->hwnd)->SendMessage(WM_SYSCOMMAND,SC_MOVE+1,0);
this->Invalidate(TRUE);
return true;
}
return CWnd::PreTranslateMessage(pMsg);
}