📄 childfrm.cpp
字号:
// ChildFrm.cpp : implementation of the CHelloFrame class
//
#include "stdafx.h"
#include "Mine.h"
#include "ChildFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CHelloFrame
IMPLEMENT_DYNCREATE(CHelloFrame, CMDIChildWnd)
BEGIN_MESSAGE_MAP(CHelloFrame, CMDIChildWnd)
//{{AFX_MSG_MAP(CHelloFrame)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CHelloFrame construction/destruction
CHelloFrame::CHelloFrame()
{
// TODO: add member initialization code here
}
CHelloFrame::~CHelloFrame()
{
}
BOOL CHelloFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CHelloFrame diagnostics
#ifdef _DEBUG
void CHelloFrame::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CHelloFrame::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CHelloFrame message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -