程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> VC >> vc教程 >> VC在單文檔界面中,將視類區分割為兩部分

VC在單文檔界面中,將視類區分割為兩部分

編輯:vc教程

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; 

  1. 上一頁:
  2. 下一頁:
欄目導航
Copyright © 程式師世界 All Rights Reserved