鼠标坐标:pt.x, pt,y
添加虚函数PreTranslateMessage
PreTranslateMessage(MSG *pMsg)
{
CPoint pt;
if (pMsg->message == WM_LBUTTONDOWN)
{
GetCursorPos(&pt);
}
if (pMsg->message == WM_LBUTTONUP)
{
GetCursorPos(&pt);
}
return TRUE;
}
[
本帖最后由 wangyf 于 2012-4-24 17:43 编辑 ]