WM_LBUTTONDOWN该怎么使用?
请将具体点,谢谢!因为我是初学MFC
在你class view版面那里对着视图类点右键,选择Message hander,
然后再选择WM_LBUTTONDOWN
报告版主,你讲的这个相应的方法我已经知道了,
//DEL void CTRYView::OnLButtonDown(UINT nFlags, CPoint point)
//DEL {
//DEL // TODO: Add your message handler code here and/or call default
//DEL m_ptBegin=point;
//DEL CView::OnLButtonDown(nFlags, point);
//DEL }
//DEL void CTRYView::OnLButtonUp(UINT nFlags, CPoint point)
//DEL {
//DEL // TODO: Add your message handler code here and/or call default
//DEL CClientDC dc(this);
//DEL dc.MoveTo(m_ptBegin);
//DEL dc.LineTo(point);
//DEL CView::OnLButtonUp(nFlags, point);
//DEL }
是不是以上的这些?