mygatherformula.h

来自「一个学生考试成绩管理的半成品」· C头文件 代码 · 共 60 行

H
60
字号
#pragma once
#include "afxwin.h"


// CMyGatherFormula 对话框

class CMyGatherFormula : public CDialog
{
	DECLARE_DYNAMIC(CMyGatherFormula)

public:
	CMyGatherFormula(CWnd* pParent = NULL);   // 标准构造函数
	virtual ~CMyGatherFormula();

// 对话框数据
	enum { IDD = IDD_GATHER_FORMULA };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持

	DECLARE_MESSAGE_MAP()
public:
	virtual BOOL OnInitDialog();
	void UpDateView(void);
private:
	CToolTipCtrl m_tooltip;
	CComboBox m_segment;
	CComboBox m_qualifiednumber;
	CComboBox m_good;
	CComboBox m_goodnumber;
	CComboBox m_low;
	CComboBox m_lownumber;
	CComboBox m_averagenumber;
	CComboBox m_averages;
	CWnd * cwnd_year;
	CXPButton m_set;
	CButton m_dataorder;
	_RecordsetPtr m_pRecordset;
	CMySetClass * p_MySetClass;
	CComboBox m_year;
	CXPButton m_defaul;
	CXPButton m_del;
	CXPButton m_newview;
public:
	afx_msg void OnBnClickedSet();
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	afx_msg void OnCbnSelchangeYear();
	afx_msg void OnBnClickedDefaul();
	afx_msg void OnBnClickedNewview();
	afx_msg void OnBnClickedDel();
protected:
	virtual void OnCancel();
	virtual void OnOK();
private:
	void view(void);
	void clsctrl(void);
};

⌨️ 快捷键说明

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