随鼠标移动画线

使用MFC开发一个WINDOWS画图程序, 具体形式参看WINDOWS操作系统附件中的“画图”程序。要求能实现基本的自由手绘曲线功能,其他方面不 做要求。

这个做的很简单。只是实现鼠标自由画线。没有保存,打印,画椭圆什么的功能。

实现过程如下:

在visual C++6.0里面 文件->新建->工程里面的MFC Appwizard [EXE]              基本上都是默认的。除了第二步选单文档。

我建的文件名为Draw

在CDrawView里面添加变量:

int m;
CPoint p1,p2;

在构造函数里面初使化m。

CDrawView::CDrawView()
{
// TODO: add construction code here
m=0;
}

添加消息句柄:OnLButtonDown

void CDrawView::OnLButtonDown(UINT nFlags, CPoint point) 
{
// TODO: Add your message handler code here and/or call default
CClientDC dc(this);
m=1;
p1=point;
CView::OnLButtonDown(nFlags, point);

}

添加消息句柄:OnLButtonUp
void CDrawView::OnLButtonUp(UINT nFlags, CPoint point) 
{
// TODO: Add your message handler code here and/or call default
p2=point;
CClientDC dc(this);
OnPrepareDC(&dc);
dc.MoveTo(p1);
dc.LineTo(p2);
m=0;
CView::OnLButtonUp(nFlags, point);
}

添加消息句柄:OnMouseMove

void CDrawView::OnMouseMove(UINT nFlags, CPoint point) 
{
// TODO: Add your message handler code here and/or call default
static int n=0;
switch(++n)
{
case 1:
   p2=point;
   break;
case 2:
   p1=p2;
   p2=point;
   n=0;
   break;
}
CClientDC dc(this);
OnPrepareDC(&dc);
if(m==1)   //只有当m=1时才画线,当m=0也即右键按下,则停止划线
{
dc.MoveTo(p1);
dc.LineTo(p2);
}
CView::OnMouseMove(nFlags, point);
}

你可能感兴趣的:(c,windows,文档,mfc,exe,construction)