我有两节课。 class DialogBase继承自CDialog DialogDerived类继承自DialogBase。
BOOL DialodDervied::OnInitDialog()
{
CDialogBase::OnInitDialog();
//Add Dynamic Control to Main Dialog from here
}
我希望在通过派生类调用Dialog(CDialogBase)时动态添加一个复选框。可能吗?如果是,怎么样?
答案 0 :(得分:2)
声明成员变量CButton m_ctrl_chk
,覆盖DialodDervied :: OnCreate()并添加类似
int DialodDervied::OnCreate(LPCREATESTRUCT lpCreateStruct)
{ if (CDialogEx::OnCreate(lpCreateStruct) == -1)
return -1;
m_ctrl_chk.Create(_T("Checkmate"), WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_AUTOCHECKBOX,
CRect(5, 5, 100, 20), this, 1234); // the 1234 value is the ID of the control
return 0;
}
使用类似的类(CEdit
,CStatic
,CButton
,...)以相同的方式创建其他类型的控件。