📄 mainfrm.h
字号:
// MainFrm.h : CMainFrame 类的接口
//
#pragma once
#include "BGColorWnd.h"
#include "NongCheManageDoc.h"
#include "InputDoc.h"
#include "QueryDoc.h"
class CMainFrame : public CMDIFrameWnd
{
DECLARE_DYNAMIC(CMainFrame)
public:
CMainFrame();
// 属性
public:
CBGColorWnd m_bgcolorwnd;
CNongCheManageDoc * pDoc1;
CInputDoc * pDoc2;
CQueryDoc * pDoc3;
// 操作
public:
// 重写
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
// 实现
public:
virtual ~CMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // 控件条嵌入成员
CStatusBar m_wndStatusBar;
// 生成的消息映射函数
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnIndexdataset();
afx_msg void OnUserset();
afx_msg void OnOtherset();
afx_msg void OnLocksystem();
afx_msg void OnExitsystem();
afx_msg void OnInputchedata();
afx_msg void OnQuerycei();
afx_msg void OnPrint1text();
afx_msg void OnPrint2text();
afx_msg void OnPrint3text();
afx_msg void OnExcel1text();
afx_msg void OnExcel2text();
afx_msg void OnExcel3text();
afx_msg void OnBackupdatabase();
afx_msg void OnRestordatabase();
afx_msg void OnDeldata();
afx_msg void OnInputregfile();
afx_msg void OnSystemreg();
virtual BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnSize(UINT nType, int cx, int cy);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -