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

📄 editwritescreen.cpp

📁 一个不错的远程控制软件源码
💻 CPP
字号:
// EditWriteScreen.cpp : implementation file
//

#include "stdafx.h"
#include "peeryouc.h"
#include "EditWriteScreen.h"

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

/////////////////////////////////////////////////////////////////////////////
// CEditWriteScreen

IMPLEMENT_DYNCREATE(CEditWriteScreen, CEditView)

CEditWriteScreen::CEditWriteScreen()
{
}

CEditWriteScreen::~CEditWriteScreen()
{
}


BEGIN_MESSAGE_MAP(CEditWriteScreen, CEditView)
	//{{AFX_MSG_MAP(CEditWriteScreen)
	ON_CONTROL_REFLECT(EN_CHANGE, OnChange)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CEditWriteScreen drawing

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

/////////////////////////////////////////////////////////////////////////////
// CEditWriteScreen diagnostics

#ifdef _DEBUG
void CEditWriteScreen::AssertValid() const
{
	CEditView::AssertValid();
}

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

/////////////////////////////////////////////////////////////////////////////
// CEditWriteScreen message handlers

void CEditWriteScreen::OnChange() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CEditView::OnInitDialog()
	// function and call CRichEditCtrl().SetEventMask()
	// with the ENM_CHANGE flag ORed into the mask.
	
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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