龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > VC开发 >

VC在单文档界面中,怎样将视类区分割为两部分?

时间:2009-12-30 15:42来源:未知 作者:admin 点击:
分享到:
OnCreateClient是虚函数 BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) { // TODO: Add your specialized code here and/or call the base class // 创建拆分窗口 if(!m_SplitterWnd.CreateStatic(this,2,1)) r

OnCreateClient是虚函数
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class

// 创建拆分窗口
if(!m_SplitterWnd.CreateStatic(this,2,1))
return FALSE;

CRect clRect;
GetClientRect(&clRect);
CSize clSize=clRect.Size();
int y=(int)clSize.cy/2-10;

//Create CTestDownView
if(!m_SplitterWnd.CreateView(0,0,RUNTIME_CLASS(CTestDownView),CSize(0,y),pContext))
return FALSE;

//Create CContainerView
if(!m_SplitterWnd.CreateView(1,0,RUNTIME_CLASS(CContainerView),CSize(0,0),pContext))
return FALSE; 

精彩图集

赞助商链接