quefrm.cpp

来自「本家庭理财系统是一个简易的家庭理财工具」· C++ 代码 · 共 50 行

CPP
50
字号
// QueFrm.cpp : implementation file
//

#include "stdafx.h"
#include "FFMS.h"
#include "QueFrm.h"
#include "GeneralDef.h"

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

/////////////////////////////////////////////////////////////////////////////
// CQueFrm

IMPLEMENT_DYNCREATE(CQueFrm, CMDIChildWnd)

CQueFrm::CQueFrm()
{
}

CQueFrm::~CQueFrm()
{
}


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

/////////////////////////////////////////////////////////////////////////////
// CQueFrm message handlers

BOOL CQueFrm::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
{
	// TODO: Add your specialized code here and/or call the base class
	AfxGetMainWnd()->PostMessage(WM_MAXSIZE_MDI,(WPARAM)this);
	return CMDIChildWnd::OnCreateClient(lpcs, pContext);
}

void CQueFrm::OnClose() 
{
	// TODO: Add your message handler code here and/or call default
	AfxGetMainWnd()->PostMessage(WM_CLOSE_CHILD_FRAME,FRAME_QUE);
	CMDIChildWnd::OnClose();
}

⌨️ 快捷键说明

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