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

📄 statqueryfrm.cpp

📁 个人财务管理系统,很实用的一个源码,很有参考价值,下载
💻 CPP
字号:
// StatQueryFrm.cpp : implementation file
//

#include "stdafx.h"
#include "FinanceMIS.h"
#include "StatQueryFrm.h"

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

/////////////////////////////////////////////////////////////////////////////
// CStatQueryFrm

IMPLEMENT_DYNCREATE(CStatQueryFrm, CMDIChildWnd)

CStatQueryFrm::CStatQueryFrm()
{
}

CStatQueryFrm::~CStatQueryFrm()
{
}


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

/////////////////////////////////////////////////////////////////////////////
// CStatQueryFrm message handlers

BOOL CStatQueryFrm::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 CStatQueryFrm::OnClose() 
{
	// TODO: Add your message handler code here and/or call default
	//发送窗口关闭消息
	AfxGetMainWnd()->PostMessage(WM_CLOSE_CHILD_FRAME,FRAME_STAT_QUERY);
	CMDIChildWnd::OnClose();
}

⌨️ 快捷键说明

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