registerbgidriver(EGAVGA_driver);
用这句你要先处理一些事才能用,详见我在论坛上的贴
独立图形程序的建立
>
============================================================
//在构造函数里添加以下两句:
//加载十字光标
m_hCrossCur = AfxGetApp()->LoadStandardCursor(IDC_CROSS);
//加载箭头光标
m_hArrowCur = AfxGetApp()->LoadStandardCursor(IDC_ARROW);
============================================================
============================================================
//以下是画直线的代码:
void CMyProject4View::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
m_bLButtonDown = TRUE; //鼠标左键按下
m_ptStart = point; //直线的起点
m_ptEnd = point; //直线的临时端点
SetCapture();
SetCursor(m_hCrossCur);//设置鼠标捕捉
CView::OnLButtonDown(nFlags, point);
}
void CMyProject4View::OnLButtonUp(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if(m_bLButtonDown)
{
m_bLButtonDown = FALSE; //鼠标左键释放
ReleaseCapture(); //释放鼠标捕捉
CClientDC dc(this);//创建客户区设备环境
dcMoveTo(m_ptStart);
dcLineTo(point);
SetCursor(m_hArrowCur);
CView::OnLButtonUp(nFlags, point);
}
}
void CMyProject4View::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if(m_bLButtonDown)
{
CClientDC dc(this);
dcSetROP2(R2_NOT);
dcMoveTo(m_ptStart); //擦除从起点到上个鼠标移动点间的直线
dcLineTo(m_ptEnd);
dcMoveTo(m_ptStart); //绘制从起点到当前点间的直线
dcLineTo(point);
m_ptEnd = point; //保存当前鼠标位置
}
CView::OnMouseMove(nFlags, point);
}
============================================================
============================================================
以下是画圆的代码:
void CMyProject4View::OnPaint()
{
CPaintDC dc(this); // device context for painting
// TODO: Add your message handler code here
CRect rcClient;
GetClientRect (&rcClient);
int cx=rcClientWidth() /2;
int cy=rcClientHeight() /2;
CRect rc(cx-45,cy-45,cx 45,cy 45);
CBrush brush(RGB(0,250,250));
CBrush poldbrush=dcSelectObject(&brush);
dcEllipse(rc);
}
// Do not call CView::OnPaint() for painting messages
}
============================================================
============================================================
代码过多,只截取部分程序,希望对你有点帮助!
运行平台:Microsoft Visual C 60
*** 作系统:Microsoft Windows XP
============================================================
以上就是关于C语言画图程序运行一闪而过全部的内容,包括:C语言画图程序运行一闪而过、C++应用程序中,画图程序 创建画笔的代码 急~~、用C++编画图软件等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)