本文介绍了如何在ActiveX控件MFC中创建一个圆形按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好
i想在我的应用程序中创建一个圆形按钮-MFC ActiveX Control
项目ONCREATE中的
i已创建一个变量_button as CButton
我使用API Create():
Hi all
i want to create a round button in my apps-MFC ActiveX Control
in the function ONCREATE of project
i have created a variable _button as CButton
and i use API Create():
_button.Create(_T("button view",WS_VISIABLE,CRect(15,15,20,10), this,1);
之后,在函数OnDraw
after, in the function OnDraw
_button.MoveWindow(rcBounds,TRUE);
pdc->FillRect(rcBounds,#color);
pdc->Ellipse(20,20,50,50);
但是,按钮显示的不是圆形按钮
可以帮助我
非常感谢
however, button is show not a round button
can help me
thank so much
推荐答案
这篇关于如何在ActiveX控件MFC中创建一个圆形按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!