📄 iofrm.cpp
字号:
// IOFrm.cpp : implementation file
//
#include "stdafx.h"
#include "FFMS.h"
#include "IOFrm.h"
#include "GeneralDef.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CIOFrm
IMPLEMENT_DYNCREATE(CIOFrm, CMDIChildWnd)
CIOFrm::CIOFrm()
{
}
CIOFrm::~CIOFrm()
{
}
BEGIN_MESSAGE_MAP(CIOFrm, CMDIChildWnd)
//{{AFX_MSG_MAP(CIOFrm)
ON_WM_CLOSE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIOFrm message handlers
BOOL CIOFrm::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 CIOFrm::OnClose()
{
// TODO: Add your message handler code here and/or call default
AfxGetMainWnd()->PostMessage(WM_CLOSE_CHILD_FRAME,FRAME_IO);
CMDIChildWnd::OnClose();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -