grade.h

来自「以前的课程设计,觉得功能不错,界面设计的也不错」· C头文件 代码 · 共 62 行

H
62
字号
#if !defined(AFX_GRADE_H__B6E9A215_7B22_4E45_9312_E3BB9619322F__INCLUDED_)
#define AFX_GRADE_H__B6E9A215_7B22_4E45_9312_E3BB9619322F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Grade.h : header file
//
#include"GradeSet.h"
#include"EditGradeDlg.h"
/////////////////////////////////////////////////////////////////////////////
// CGrade dialog

class CGrade : public CDialog
{
// Construction
public:
	CGrade(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CGrade)
	enum { IDD = IDD_GRADE };
	CListCtrl	m_list;
	CString	m_adress;
	CString	m_born;
	CString	m_id;
	CString	m_name;
	CString	m_sex;
	CString	m_tel;
	CGradeSet m_gradeset;
	CString	m_syspassword;
	CString	m_sysuser;
	//}}AFX_DATA
   CEditGradeDlg m_editdlg;
   int nItem;
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGrade)
	protected:

    virtual BOOL OnInitDialog();
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CGrade)
	afx_msg void OnUp();
	afx_msg void OnExit();
	afx_msg void OnDblclkList(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnClickList(NMHDR* pNMHDR, LRESULT* pResult);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_GRADE_H__B6E9A215_7B22_4E45_9312_E3BB9619322F__INCLUDED_)

⌨️ 快捷键说明

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