[求助]超新人的一个问题..关于CView::OnLButtonDown(nFlags, point);
在下面的一段程序里:void CDocViewView:: OnLButtonDown (UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
m_bMouseDown = true; // 鼠标左键按下
m_ptStart = point; // 画线的起点
m_ptOld = point; // 临时点
SetCapture(); // 将鼠标消息发送到视窗口
CRect rect;
GetClientRect(&rect); // 得到客户窗口的大小
ClientToScreen(&rect); // 将当前窗口坐标转换成屏幕坐标
ClipCursor(&rect); // 把鼠标限定在其参数指定的矩形区域内
SetCursor(m_hCross); // 设置鼠标形状为十字形
CView::OnLButtonDown(nFlags, point);
}
最好的CView::OnLButtonDown(nFlags, point);的作用是什么??
万分感谢各位解答....