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

📄 content_1.cpp

📁 IRC的客户端演示
💻 CPP
字号:

#include "stdafx.h"
#include "content.h"

#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CContent

IMPLEMENT_DYNCREATE(CContent, CEdit)

BEGIN_MESSAGE_MAP(CContent, CEdit)
	ON_WM_LBUTTONDOWN()
END_MESSAGE_MAP()


/////////////////////////////////////////////////////////////////////////////
// CContent construction/destruction

CContent::CContent()
{
}

CContent::~CContent()
{
}

/////////////////////////////////////////////////////////////////////////////
// CContent Operations


/////////////////////////////////////////////////////////////////////////////
// CContent diagnostics

#ifdef _DEBUG
void CContent::AssertValid() const
{
	CObject::AssertValid();
}

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

////////////////////////////////////////////////////////
void CContent::OnLButtonDown(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default

	CEdit::OnLButtonDown(nFlags, point);
}

⌨️ 快捷键说明

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