资源描述:
《VC 6.0 下MFC基于对话框 绘制图形》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、附录表一、具体步骤:1、选择菜单栏的“新建”,选择MFC项目名为DrawGraphics,并设置为基于对话框的项目,如图-1、图-2所示;图-1图-2152、按下键盘上的Ctrl+W键,调出类向导,选择“AddClass”,并点击“New”添加一个颜色按钮类CColorButton,继承自CButton类,如图-3所示:图-33、在CColorButton中添加如下成员变量:COLORREFcolor;//按钮颜色CPointarrays[4];//按钮顶点坐标BOOLIsShow;//是否显示按钮BOOLIsPressed;//按钮是否被按下4、右击CColorButton类
2、,选择AddVirtulfunction,重写其DraItem函数,如图-4,图-5所示:15图-4图-55、为其Drawitem函数中添加如下代码:CRectrect;GetClientRect(rect);CDCdc;dc.Attach(lpDrawItemStruct->hDC);arrays[0]=CPoint(rect.left,rect.top);arrays[1]=CPoint(rect.right,rect.top);arrays[2]=CPoint(rect.right,rect.bottom);arrays[3]=CPoint(rect.left,rect.
3、bottom);//设置背景透明dc.SetBkMode(TRANSPARENT);if(IsShow){//创建一个位图画刷CBrushbrush(color);dc.SelectObject(&brush);CPenpen(PS_NULL,1,color);dc.SelectObject(&pen);dc.Rectangle(rect);15if(IsPressed){CPenpen(PS_DASHDOTDOT,3,RGB(0,0,0));dc.SelectObject(&pen);dc.MoveTo(arrays[0]);for(inti=1;i<4;i++){dc.Li
4、neTo(arrays[i]);}dc.LineTo(arrays[0]);}else{CPenpen(PS_DASHDOTDOT,2,color);dc.SelectObject(&pen);dc.MoveTo(arrays[0]);for(inti=1;i<4;i++){dc.LineTo(arrays[i]);}dc.LineTo(arrays[0]);}//绘制按钮文本CStringstr;GetWindowText(str);dc.SetTextColor(RGB(255-GetRValue(color),255-GetGValue(color),255-GetBVa
5、lue(color)));dc.DrawText(str,CRect(0,0,rect.right,rect.bottom),DT_CENTER
6、DT_VCENTER
7、DT_SINGLELINE);}5、为CColorButton添加属性设置函数:voidCColorButton::SetDrawColor(COLORREFm_color,BOOLIsShow){this->color=m_color;this->IsShow=IsShow;}155、为CColorButton添加WM_LBUTTONDOWN和WM_LBUTTONUP消息,其消息处理函数如下:voidCColo
8、rButton::OnLButtonDown(UINTnFlags,CPointpoint){//TODO:Addyourmessagehandlercodehereand/orcalldefaultIsPressed=true;CButton::OnLButtonDown(nFlags,point);}voidCColorButton::OnLButtonUp(UINTnFlags,CPointpoint){//TODO:Addyourmessagehandlercodehereand/orcalldefaultIsPressed=false;CButton::OnLButt
9、onUp(nFlags,point);}6、为DrawGraphics项目的中的对话框资源拖拽如下控件,如图-6所示,并按表-1设置其相关ID;图-6ID作用及类别IDC_RADIO_RECT矩形单选按钮IDC_RADIO_ROUND圆形单选按钮IDC_RADIO_LINE直线单选按钮IDC_RADIO_SELF涂鸦单选按钮IDC_RADIO_SLOIDLINE实线单选按钮15IDC_RADIO_DOTTEDLINE虚线单选按钮IDC_COMBO_LINEVALUE线条粗细下拉列表IDC_S