在运行时从MFC中的派生类添加控件

时间:2013-06-13 05:27:08

标签: c++ user-interface mfc dialog visual-c++

我有两节课。 class DialogBase继承自CDialog DialogDerived类继承自DialogBase。

BOOL DialodDervied::OnInitDialog()
{
     CDialogBase::OnInitDialog();
     //Add Dynamic Control to Main Dialog from here
}

我希望在通过派生类调用Dialog(CDialogBase)时动态添加一个复选框。可能吗?如果是,怎么样?

1 个答案:

答案 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;
}

使用类似的类(CEditCStaticCButton,...)以相同的方式创建其他类型的控件。