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

📄 wzdrctrl.h

📁 《Visual C++ MFC编程实例》配套代码,如果大家正在学习此教程
💻 H
字号:
#if !defined(AFX_WZDRICHEDITCTRL_H__19B437E7_E7F5_11D1_A18D_DCB3C85EBD34__INCLUDED_)
#define AFX_WZDRICHEDITCTRL_H__19B437E7_E7F5_11D1_A18D_DCB3C85EBD34__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// WzdRCtrl.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CWzdRichEditCtrl window

class CWzdRichEditCtrl : public CRichEditCtrl
{
// Construction
public:
	CWzdRichEditCtrl();

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWzdRichEditCtrl)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CWzdRichEditCtrl();

	// Generated message map functions
protected:
	//{{AFX_MSG(CWzdRichEditCtrl)
	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
	//}}AFX_MSG
	afx_msg void OnUndo(void){Undo();};
	afx_msg void OnCut(void){Cut();};
	afx_msg void OnCopy(void){Copy();};
	afx_msg void OnPaste(void){Paste();};
	afx_msg void OnDelete(void){Clear();};
	afx_msg void OnSelectAll(void){SetSel(0,-1);};
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WZDRICHEDITCTRL_H__19B437E7_E7F5_11D1_A18D_DCB3C85EBD34__INCLUDED_)

⌨️ 快捷键说明

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