mfc的DDX_Control示例

时间:2015-04-04 10:09:22

标签: mfc

我无法获得DDX_Control工作示例。

当我创建对话框时,我无法为控件对象创建引用。

谷歌也没有例子。

感谢。

void CEditDialog::DoDataExchange(CDataExchange* pDX)
{
    CDialog::DoDataExchange(pDX);
    DDX_Control(pDX, IDC_COMBO1, m_cmbBox);
    DDX_Text(pDX, IDC_EDIT1, m_Edit);
}

void CMFCApplicationDDEView::OnActionEdit2()
{
    // TODO: Add your command handler code here
    CEditDialog dlg;
    CString str;
    dlg.m_cmbBox.GetLBText(0, str);

    if (dlg.DoModal() == IDOK)
    {
        MessageBox(dlg.cmbItemStr);
    }
}

dlg.m_cmbBox为NULL。为什么它为null,如何在我的视图中引用它

2 个答案:

答案 0 :(得分:1)

@barmak说在InitDialog()执行之前你无法直接访问对话框控件是正确的。

但是,您可以使用DDX_CBString设置/检索组合框的编辑部分的文本,例如:

// in .h file
CString m_cmbItemStr;

// in .cpp
void CEditDialog::DoDataExchange(CDataExchange* pDX)
{   CDialog::DoDataExchange(pDX);
    DDX_CBString(pDX, IDC_COMBO1, m_cmbItemStr);
    DDX_Text(pDX, IDC_EDIT1, m_Edit);
}

void CMFCApplicationDDEView::OnActionEdit2()
{   CEditDialog dlg;
    CString str = TEXT("some value");
    dlg.m_cmbItemStr = str;

    if (dlg.DoModal() == IDOK)
        MessageBox(dlg.m_cmbItemStr);
}

答案 1 :(得分:0)

您的组合框和对话框的代码是正确的,但m_cmbBox.GetLBText()之前和之后都无法使用DoModal(),因为没有窗口句柄。覆盖下面的代码,然后访问combo_str而不是访问窗口

BEGIN_MESSAGE_MAP(CEditDialog, CDialog)
    ON_COMMAND(IDOK, OnOK)
    //...
END_MESSAGE_MAP()

BOOL CEditDialog::OnInitDialog()
{
    BOOL res = CDialog::OnInitDialog();
    //Dialog is created, window handles are available, set text here
    return res;
}

void CEditDialog::OnOK()
{
    //get text before dialog's window handles are destroyed
    int sel = m_cmbBox.GetCurSel();
    if (sel >= 0) m_cmbBox.GetLBText(sel, cmbItemStr);
    CDialog::OnOK();    
}