📄 dialognew.h
字号:
//
/****************************************/
/* SchoolManageSystem */
/*设计者:全佳营 */
/*时间:2004.5.9-2004-5.18 */
/*Email:ghostman@tzc.edu.cn */
/****************************************/
#pragma once
#include "afxcmn.h"
#include "DialogNewStudent.h"
#include "DialogNewClass.h"
#include "DialogNewDepartment.h"
#include "DialogNewTeacher.h"
#include "Dialog_NewConsortium.h"
#include "DialogNewCollege.h"
// CDialogNew 对话框
class CDialogNew : public CDialog
{
DECLARE_DYNAMIC(CDialogNew)
public:
CDialogNew(CWnd* pParent = NULL); // 标准构造函数
virtual ~CDialogNew();
virtual BOOL OnInitDialog();
// 对话框数据
enum { IDD = IDD_DIALOGNEW };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnTcnSelchangeTab1(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnBnClickedButtonExit();
afx_msg void OnOK();
afx_msg void OnCancel();
BOOL SetSelectDialog(void);
protected:
CTabCtrl m_TabNew;
CDialogNewStudent m_newstudent;
CDialogNewClass m_newclass;
CDialogNewDepartment m_newdepartment;
CDialogNewTeacher m_newteacher;
CDialog_NewConsortium m_newconsortium;
CDialogNewCollege m_newcollege;
BOOL bselect[6];
public:
int m_select;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -