scoreoutput.h

来自「教学管理系统实现了高校教务、教学和学生三大方面的自动化以及交互式管理」· C头文件 代码 · 共 73 行

H
73
字号
#if !defined(AFX_SCOREOUTPUT_H__3AE5F29D_0341_4A4A_B483_903CE338B0D6__INCLUDED_)
#define AFX_SCOREOUTPUT_H__3AE5F29D_0341_4A4A_B483_903CE338B0D6__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ScoreOutput.h : header file
#include "BtnST.h"
#include "Students.h"
#include "StuScores.h"
//

/////////////////////////////////////////////////////////////////////////////
// CScoreOutput dialog

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

// Dialog Data
	//{{AFX_DATA(CScoreOutput)
	enum { IDD = IDD_SCOREOUTPUT_DIALOG };
	CButtonST	m_btnPre;
	CButtonST	m_btnNext;
	CEdit	m_ctlEdt2;
	CEdit	m_ctlEdt1;
	CListCtrl	m_listScore;
	CListCtrl	m_listResult;
	CButtonST	m_btnSearch;
	CString	m_edit1;
	CString	m_edit2;
	CString	m_lblInput1;
	CString	m_lblInput2;
	CString	m_lblScore;
	//}}AFX_DATA


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

// Implementation
	CStudents *m_pStu;
	CStuScores *m_pStuScore;
protected:

	// Generated message map functions
	//{{AFX_MSG(CScoreOutput)
	virtual BOOL OnInitDialog();
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	afx_msg void OnBtnsearch();
	afx_msg void OnClickListresult(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnBtnpre();
	afx_msg void OnBtnnext();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	void setScoreList();
	bool m_bBySpe;
	bool m_bByStu;
};

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

#endif // !defined(AFX_SCOREOUTPUT_H__3AE5F29D_0341_4A4A_B483_903CE338B0D6__INCLUDED_)

⌨️ 快捷键说明

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