你要输出到哪里?如果只是输出调试信息,那么直接:
TRACE(TEXT("OnLButtonDown:(%d,%d)\n"),point.x,point.y);
即可。
如果要弹出消息框,那就:
CString str;str.Format(TEXT("%d,%d"),point.x,point.y);AfxMessageBox(str);