sccview.cpp

来自「一个很好的串口监视程序」· C++ 代码 · 共 59 行

CPP
59
字号
// SCCView.cpp : implementation file
//

#include "stdafx.h"
#include "SCCView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSCCView

IMPLEMENT_DYNCREATE(CSCCView, CXRichEditView)

CSCCView::CSCCView()
{
}

CSCCView::~CSCCView()
{
}


BEGIN_MESSAGE_MAP(CSCCView, CXRichEditView)
	//{{AFX_MSG_MAP(CSCCView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSCCView drawing

void CSCCView::OnDraw(CDC* pDC)
{
	CDocument* pDoc = GetDocument();
	// TODO: add draw code here
}

/////////////////////////////////////////////////////////////////////////////
// CSCCView diagnostics

#ifdef _DEBUG
void CSCCView::AssertValid() const
{
	CXRichEditView::AssertValid();
}

void CSCCView::Dump(CDumpContext& dc) const
{
	CXRichEditView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CSCCView message handlers

⌨️ 快捷键说明

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