mfc拆分窗口。。运行通过。。编译出错。。求助
1.在CMainFrame中添加一个CSplitterWnd类变量m_splitterWnd;2.建立对话框资源,新增两个类:CLineView和CMyEditView,...
1.在CMainFrame中添加一个CSplitterWnd类变量m_splitterWnd ;
2.建立对话框资源,新增两个类:CLineView和CMyEditView,基类分别为CFormView和CEditView;
3.在CMainFrame头文件加入CLineView和CMyEditView的头文件;
4.增加OnCreateClient函数;
5.OnCreateClient函数代码如下:
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
m_wndSplitter.CreateStatic(this,1,2);
m_wndSplitter.CreateView(0,0, RUNTIME_CLASS(CLineView),CSize(200,0),pContext);
m_wndSplitter.CreateView(0,1,RUNTIME_CLASS(CMyEditView),CSize(0,0),pContext);
return TRUE;
//不再调用基类的OnCreateClient函数
//return CFrameWnd::OnCreateClient(lpcs, pContext);
}
6.目的:希望拆分一行两列窗口,左边CLineView可以摆控件;右边CMyEditView可以编辑;
7.问题:编译通过,执行出错。
。。。。求高手指点,不胜感激!。。。。 展开
2.建立对话框资源,新增两个类:CLineView和CMyEditView,基类分别为CFormView和CEditView;
3.在CMainFrame头文件加入CLineView和CMyEditView的头文件;
4.增加OnCreateClient函数;
5.OnCreateClient函数代码如下:
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
m_wndSplitter.CreateStatic(this,1,2);
m_wndSplitter.CreateView(0,0, RUNTIME_CLASS(CLineView),CSize(200,0),pContext);
m_wndSplitter.CreateView(0,1,RUNTIME_CLASS(CMyEditView),CSize(0,0),pContext);
return TRUE;
//不再调用基类的OnCreateClient函数
//return CFrameWnd::OnCreateClient(lpcs, pContext);
}
6.目的:希望拆分一行两列窗口,左边CLineView可以摆控件;右边CMyEditView可以编辑;
7.问题:编译通过,执行出错。
。。。。求高手指点,不胜感激!。。。。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询