historyedit.h
来自「C++编程实践与技巧一书各章节的源码」· C头文件 代码 · 共 37 行
H
37 行
// HistoryEdit.h
#ifndef _HistoryEdit_h_
#define _HistoryEdit_h_
/////////////////////////////////////////////////////////////////////////////
// CHistoryEdit window
class CHistoryEdit : public CEdit
{
// Construction
public:
CHistoryEdit();
// Attributes
public:
// Operations
public:
void AppendString (CString str);
// Implementation
public:
virtual ~CHistoryEdit();
// Generated message map functions
protected:
//{{AFX_MSG(CHistoryEdit)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
protected:
};
#endif
// End HistoryEdit.h
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?