?? detqueryfrm.cpp
字號:
// DetQueryFrm.cpp : implementation file
//
#include "stdafx.h"
#include "FinanceMIS.h"
#include "DetQueryFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDetQueryFrm
IMPLEMENT_DYNCREATE(CDetQueryFrm, CMDIChildWnd)
CDetQueryFrm::CDetQueryFrm()
{
}
CDetQueryFrm::~CDetQueryFrm()
{
}
BEGIN_MESSAGE_MAP(CDetQueryFrm, CMDIChildWnd)
//{{AFX_MSG_MAP(CDetQueryFrm)
ON_WM_CLOSE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDetQueryFrm message handlers
BOOL CDetQueryFrm::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 CDetQueryFrm::OnClose()
{
// TODO: Add your message handler code here and/or call default
//發送窗口關閉消息
AfxGetMainWnd()->PostMessage(WM_CLOSE_CHILD_FRAME,FRAME_DET_QUERY);
CMDIChildWnd::OnClose();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -