⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nestsplt.cpp

📁 讲mfc的书
💻 CPP
字号:
#include "stdafx.h"

#include "nestsplt.h"



  void CNestSplit::SetMeActive(void)
    {
	CFrameWnd *frame=GetParentFrame();
	CView *view=(CView *)GetPane(0,0);
	if (view->IsKindOf(RUNTIME_CLASS(CView)))
	  frame->SetActiveView(view,TRUE);
	}

  BOOL CNestSplit::SplitRow(int cybefore)
    {
	SetMeActive();
	return CSplitterWnd::SplitRow(cybefore);
	}

  BOOL CNestSplit::SplitColumn(int cxbefore)
    {
	SetMeActive();
	return CSplitterWnd::SplitColumn(cxbefore);
	}




⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -