debugvw.h
来自「讲mfc的书」· C头文件 代码 · 共 47 行
H
47 行
// debugvw.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// DebugView view
class DebugView : public CScrollView
{
public:
DebugView(); // class wizard makes this protected but I want pubic!
protected:
DECLARE_DYNCREATE(DebugView)
// Attributes
public:
protected:
int m_linehi;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(DebugView)
protected:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual void OnInitialUpdate(); // first time after construct
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~DebugView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(DebugView)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?