?? childinputfrm.cpp
字號:
// ChildInput.cpp : 實現文件
//
#include "stdafx.h"
#include "NongCheManage.h"
#include "ChildInputFrm.h"
#include "MainFrm.h"
#include ".\childinputfrm.h"
// CChildInputFrm
IMPLEMENT_DYNCREATE(CChildInputFrm, CMDIChildWnd)
CChildInputFrm::CChildInputFrm()
{
}
CChildInputFrm::~CChildInputFrm()
{
CMainFrame * pmainwnd=(CMainFrame *)AfxGetMainWnd();
pmainwnd->pDoc2=NULL;
theApp.m_ChildWindowOpen=false;
}
BEGIN_MESSAGE_MAP(CChildInputFrm, CMDIChildWnd)
END_MESSAGE_MAP()
// CChildInputFrm 消息處理程序
BOOL CChildInputFrm::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style |= WS_VISIBLE|WS_MAXIMIZE;
theApp.m_ChildWindowOpen=true;
return CMDIChildWnd::PreCreateWindow(cs);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -