countdialog.h

来自「一个简单的记账软件」· C头文件 代码 · 共 67 行

H
67
字号
#if !defined(AFX_COUNTDIALOG_H__EA159C53_2E35_4BD8_B7DB_D25CD4810AB6__INCLUDED_)
#define AFX_COUNTDIALOG_H__EA159C53_2E35_4BD8_B7DB_D25CD4810AB6__INCLUDED_

#include "Count.h"
#include "GraphDia.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// CountDialog.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CCountDialog dialog

class CCountDialog : public CDialog
{
// Construction
public:
	CCountDialog(CWnd* pParent = NULL);   // standard constructor
	~CCountDialog();
public:
	CCount m_Data;
// Dialog Data
	//{{AFX_DATA(CCountDialog)
	enum { IDD = IDD_COUNT_DIA };
	CButton	m_Histongram;
	CButton	m_Graph;
	CButton	m_Distributing;
	CButton	m_3d;
	CComboBox	m_Month_ComboBox;
	CEdit	m_editOutInfo;
	CString	m_OutInfo;
	int		m_iMonth;
	//}}AFX_DATA
	CGraphDia * pGraphDiaOut;
	CGraphDia * pGraphDia;
	


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCountDialog)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CCountDialog)
	afx_msg void OnHistogramButton();
	afx_msg void OnCloseupChosemonth();
	afx_msg void OnDropdownChosemonth();
	afx_msg void OnGraphButton();
	afx_msg void OnDistributingButton();
	afx_msg void On3dButton();
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_COUNTDIALOG_H__EA159C53_2E35_4BD8_B7DB_D25CD4810AB6__INCLUDED_)

⌨️ 快捷键说明

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