studlg.h

来自「vc编写的简单的学生成绩管理系统」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef _STUDLG_H
#define _STUDLG_H

#include <afxwin.h>

class CStuDlg : public CWnd
{
public:
	CStuDlg(CWnd* parentWnd);
	virtual ~CStuDlg();

protected:
	CWnd* m_parentWnd;

protected:
	afx_msg void OnSize(UINT nType,int cx,int cy);
	afx_msg int OnCreate(LPCREATESTRUCT lps);

	DECLARE_MESSAGE_MAP()

};

#endif

⌨️ 快捷键说明

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