工控编程吧
标题: 上位机MFC如何分割视窗 [打印本页]
作者: qq263946146 时间: 2019-7-24 14:19
标题: 上位机MFC如何分割视窗
视窗的分割中人在主框架添加虚函数OnCreateClient处理就好。
先准备一变量 CSplitterWnd m_wndSplitter;
然后在函数内实现分割。
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
//创建静态窗口
m_wndSplitter.CreateStatic(this, 2, 1);
//创建视图
m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CDemoView2),
CSize(100, 150), pContext);
m_wndSplitter.CreateView(1, 0, RUNTIME_CLASS(CGkbc8View),
CSize(100, 150), pContext);
return true;
return CFrameWnd::OnCreateClient(lpcs, pContext);
}
(, 下载次数: 0)