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

📄 childframe2.cpp

📁 nucleus source 源码 全部源码
💻 CPP
字号:
// ChildFrame2.cpp : implementation file
//

#include "stdafx.h"
#include "WinDemo.h"
#include "ChildFrame2.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CChildFrame2

IMPLEMENT_DYNCREATE(CChildFrame2, CMDIChildWnd)

CChildFrame2::CChildFrame2()
{
}

CChildFrame2::~CChildFrame2()
{
}


BEGIN_MESSAGE_MAP(CChildFrame2, CMDIChildWnd)
	//{{AFX_MSG_MAP(CChildFrame2)
	ON_WM_CLOSE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChildFrame2 message handlers

void CChildFrame2::ActivateFrame(int nCmdShow) 
{
	// TODO: Add your specialized code here and/or call the base class
	
	CMDIChildWnd::ActivateFrame(nCmdShow);
}

BOOL CChildFrame2::PreCreateWindow(CREATESTRUCT& cs) 
{
	// TODO: Add your specialized code here and/or call the base class
	
	return CMDIChildWnd::PreCreateWindow(cs);
}

void CChildFrame2::OnClose() 
{
	// TODO: Add your message handler code here and/or call default
	
//	CMDIChildWnd::OnClose();
}

⌨️ 快捷键说明

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