几个常用函数在OnDraw()中测试
void CDrawTest1View::OnDraw(CDC* pDC)
{
CDrawTest1Doc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (!pDoc)
return;
// TODO: 在此处为本机数据添加绘制代码
//修改CView类的虚函数OnDraw绘制椭圆
CBrush brush;
brush.CreateHatchBrush(HS_DIAGCROSS,RGB(255,255,0));
CBrush *oldbrush = pDC->SelectObject(&brush);
CRect rect;
this->GetClientRect(rect);
POINT poit;
poit.x=40;
poit.y=40;
pDC->MoveTo(poit);
poit.x+=50;
poit.y+=50;
pDC->LineTo(poit);
pDC->SelectObject(oldbrush);
}
/*
Arc:绘制一段弧
Chord:绘制弦形
Ellipse:绘制椭圆或圆
CRect rect;
this->GetClientRect(rect);
pDC->RoundRect(rect);
MoveTo:将当前位置移动到指定位置
LineTo:从当前位置到指定位置画一条直线
CRect rect;
this->GetClientRect(rect);
POINT poit;
poit.x=40;
poit.y=40;
pDC->MoveTo(poit);
poit.x+=50;
poit.y+=50;
pDC->LineTo(poit);
Polyline:画连接指定点的折线段
PolyBezler:根据两个端点和两个控制点画贝塞尔曲线
Pie:画冰块
Polygon:根据两个或两个以上的顶点绘制一个多边形
Rectangle:根据指定的左上角和右下角坐标绘制一个矩形
RoundRect:画圆角矩形
CRect rect;
POINT poit;
poit.x=40;
poit.y=40;
this->GetClientRect(rect);
pDC->RoundRect(rect,poit);
SetPixel:画一个点
*/
// CDrawTest1View 打印