mainfrm.h

来自「繁琐的家庭收支」· C头文件 代码 · 共 83 行

H
83
字号
// MainFrm.h : CMainFrame 类的接口
//
#pragma once
#include "ChildFrm.h"

class CMainFrame : public CMDIFrameWnd
{
	DECLARE_DYNAMIC(CMainFrame)
public:
	CMainFrame();

// 属性
public:

// 操作
public:
	CImageList	m_imageList;
	UINT m_currentwin;

	CChildFrame * m_outdian;
	CChildFrame * m_outshui;
	CChildFrame * m_outshenghuo;
	CChildFrame * m_outriyong;
	CChildFrame * m_outli;
	CChildFrame * m_outwww;
	CChildFrame * m_outbook;
	CChildFrame * m_outother;
	CChildFrame * m_ingong;
	CChildFrame * m_inli;
	CChildFrame * m_inother;
	CChildFrame * m_zhaiout;
	CChildFrame * m_zhaiin;
	CChildFrame * m_dotforget;
	CChildFrame * m_billin;
	CChildFrame * m_billout;
	CChildFrame * m_billtotal;

// 重写
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;
	CToolBar    m_wndToolBar;

// 生成的消息映射函数
protected:
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnUserManage();
	afx_msg void OnSystemSet();
	afx_msg void OnOutDian();
	afx_msg void OnOutShui();
	afx_msg void OnOutShenghuo();
	afx_msg void OnOutRiyong();
	afx_msg void OnOutLi();
	afx_msg void OnOutWww();
	afx_msg void OnOutBook();
	afx_msg void OnOutOther();
	afx_msg void OnInGong();
	afx_msg void OnInLi();
	afx_msg void OnInOther();
	afx_msg void OnZhaiOut();
	afx_msg void OnZhaiIn();
	afx_msg void OnDotforgetText();
	afx_msg void OnBillIn();
	afx_msg void OnBillOut();
	afx_msg void OnBillTotal();
	afx_msg void OnBackupData();
	afx_msg void OnRestorData();
};


⌨️ 快捷键说明

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