搜索资源列表
Graph
- 《Visual C++ 6.0开发技巧与实例剖析》第二章图形设备接口,绘制点、线、多边形等-" Visual C++ 6.0 development skills and examples of analysis of the" second chapter Graphics Device Interface, draw points, lines, polygons, etc.
CDC
- 在Windows平台上,应用程序的图形设备接口(graphics device interface,GDI)被抽象为设备上下文(Device Context,DC)。 在微软基类库MFC中,CDC类是定义设备上下文对象的基类,所有绘图函数都在CDC基类中定义。当需要输出文字或图形时,就需要调用CDC类的成员函数,这些成员函数具备输出文本、绘制图形的功能。 本节讲解的例程全部在TestView.cpp文件的 void CTestView::OnDraw(CDC* pDC)函数中实现。