2012-02-08 49 views
1

在我的MFC應用程序中,我使用CSplitterWnd創建了兩個窗格,每個窗格都是一個CFormView對話框。運行此GUI應用程序時,分離器正在工作,並且兩個窗格都顯示,但所有控件(按鈕,編輯框,組合框...)都被禁用。兩個對話框都具有「孩子」和「無邊界」的屬性。分離器窗格上禁用了所有控件

我是否錯過了在窗格視圖中啓用所有這些控制的內容?

非常感謝您的幫助。

CK

/////////// Header file 
class CParentSelectionDlg : public CFormView 
{ 
protected: 
    CParentSelectionDlg();   // protected constructor used by dynamic creation 
    DECLARE_DYNCREATE(CParentSelectionDlg) 

// Form Data 
public: 
    //{{AFX_DATA(CParentSelectionDlg) 
    enum { IDD = IDD_PARENT_SELECTION }; 
     // NOTE: the ClassWizard will add data members here 
    //}}AFX_DATA 

// Attributes 
public: 

// Operations 
public: 

// Overrides 
    // ClassWizard generated virtual function overrides 
    //{{AFX_VIRTUAL(CParentSelectionDlg) 
    public: 
    virtual void OnInitialUpdate(); 
    protected: 
    virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support 
    //}}AFX_VIRTUAL 

// Implementation 
protected: 
    virtual ~CParentSelectionDlg(); 
#ifdef _DEBUG 
    virtual void AssertValid() const; 
    virtual void Dump(CDumpContext& dc) const; 
#endif 

    // Generated message map functions 
    //{{AFX_MSG(CParentSelectionDlg) 
    afx_msg void OnButtonSave(); 
    //}}AFX_MSG 
    DECLARE_MESSAGE_MAP() 
}; 


/////////////////////////////// CPP 

IMPLEMENT_DYNCREATE(CParentSelectionDlg, CFormView) 

CParentSelectionDlg::CParentSelectionDlg() 
    : CFormView(CParentSelectionDlg::IDD) 
{ 
    //{{AFX_DATA_INIT(CParentSelectionDlg) 
     // NOTE: the ClassWizard will add member initialization here 
    //}}AFX_DATA_INIT 
} 

CParentSelectionDlg::~CParentSelectionDlg() 
{ 
} 

void CParentSelectionDlg::DoDataExchange(CDataExchange* pDX) 
{ 
    CFormView::DoDataExchange(pDX); 
    //{{AFX_DATA_MAP(CParentSelectionDlg) 
     // NOTE: the ClassWizard will add DDX and DDV calls here 
    //}}AFX_DATA_MAP 
} 


BEGIN_MESSAGE_MAP(CParentSelectionDlg, CFormView) 
    //{{AFX_MSG_MAP(CParentSelectionDlg) 
    ON_BN_CLICKED(IDC_BUTTON_SAVE, OnButtonSave) 
    //}}AFX_MSG_MAP 
END_MESSAGE_MAP() 

///////////////////////////////////////////////////////////////////////////// 
// CParentSelectionDlg diagnostics 

#ifdef _DEBUG 
void CParentSelectionDlg::AssertValid() const 
{ 
    CFormView::AssertValid(); 
} 

void CParentSelectionDlg::Dump(CDumpContext& dc) const 
{ 
    CFormView::Dump(dc); 
} 
#endif //_DEBUG 

void CParentSelectionDlg::OnInitialUpdate() 
{ 
    CFormView::OnInitialUpdate(); 

} 


///////////////////////////////////////////////////////////////////////////// 
// CParentSelectionDlg message handlers 

void CParentSelectionDlg::OnButtonSave() 
{ 
    // TODO: Add your control notification handler code here 

} 
/// Thanks a lot 

回答

1

我敢打賭,你的message map沒有設置正確。

你能發佈你的代碼嗎?

+0

是的。我做到了。感謝您的回覆。我嘗試了其他對話框模板,並工作。對話框具有相同的屬性。再次感謝您的幫助。 – 2012-02-08 22:41:26

+0

當我使用組合框並使用類嚮導添加變量後,控件全部啓用。不知道爲什麼,但它現在起作用。欣賞你的表情。 – 2012-02-08 23:36:30

+0

VS做的事情你不能解釋有時......好吧無論如何祝你好運:) – demoncodemonkey 2012-02-08 23:42:18