⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 numedit.h

📁 vc编写的简单的学生成绩管理系统
💻 H
字号:
// NumEdit.h: interface for the CNumEdit class.
//
//////////////////////////////////////////////////////////////////////

#ifndef _NUMEDIT_H
#define _NUMEDIT_H

#include <afxwin.h>

#if _MSC_VER > 1000
#pragma once
#endif 

class CNumEdit : public CEdit  
{
public:
	CNumEdit();
	virtual ~CNumEdit();

protected:
	//
	//Message map handlers
	//
	afx_msg void OnChar(UINT nChar,UINT nRepCnt,UINT nFlags);
	afx_msg void OnSetFocus(CWnd* pOldWnd);
	afx_msg void OnLButtonDown(UINT nFlags,CPoint point);

	DECLARE_MESSAGE_MAP()

};

#endif 

⌨️ 快捷键说明

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