gradeadddlg.h

来自「c++学生成绩管理系统,功能比较完善的中级管理系统」· C头文件 代码 · 共 67 行

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

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "StudentSet.h"
#include "CourseSet.h"
#include "Classset.h"
#include "GradeSet.h"
// GradeAddDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CGradeAddDlg dialog

class CGradeAddDlg : public CDialog
{
// Construction
public:
	CGradeAddDlg(CWnd* pParent = NULL);   // standard constructor
	CStudentSet m_studentset;
	CCourseSet m_courseset;
	CClassSet m_classset;
	CGradeSet m_gradeset;
	CString m_addstudentno,m_addcourseno;
// Dialog Data
	//{{AFX_DATA(CGradeAddDlg)
	enum { IDD = IDD_GRADEADD };
	CComboBox	m_combozhuanyie;
	CComboBox	m_comboyear;
	CComboBox	m_comboclass;
	CComboBox	m_combocourse;
	CComboBox	m_combono;
	CComboBox	m_comboname;
	double	m_addgrade;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CGradeAddDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSelendokComboname();
	afx_msg void OnSelendokCombono();
	afx_msg void OnSelendokComboyear();
	afx_msg void OnSelendokCombozhuanyie();
	afx_msg void OnSelendokComboclass();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_GRADEADDDLG_H__2C24B9EE_ABC3_4B2C_9DC6_04D0131F3400__INCLUDED_)

⌨️ 快捷键说明

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