本文介绍了如何在mfc对话框中动态创建按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要使用以下代码在mfc对话框中动态创建一个按钮。



CButton myButton1,myButton2,myButton3,myButton4;





myButton1.Create(_T(我的按钮),WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON,

CRect(10,10,100) ,30),pParentWnd,1);



在这段代码中我得到一个错误pParentwnd作为不是成员..我怎么能清除这个错误?

解决方案

I need to create a button dynamically in mfc dialog form by using following code..

CButton myButton1, myButton2, myButton3, myButton4;


myButton1.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON,
CRect(10,10,100,30), pParentWnd, 1);

In this code i got an error pParentwnd as not a member.. how can i clear this error?

解决方案


这篇关于如何在mfc对话框中动态创建按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 16:30