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

📄 text.cpp

📁 计算器源代码
💻 CPP
字号:
// Text.cpp : implementation file
//

#include "stdafx.h"
#include "计算器.h"
#include "Text.h"

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

/////////////////////////////////////////////////////////////////////////////
// CText

CText::CText()
{
}

CText::~CText()
{
}


BEGIN_MESSAGE_MAP(CText, CEdit)
	//{{AFX_MSG_MAP(CText)
	ON_WM_SETFOCUS()
	ON_WM_CONTEXTMENU()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CText message handlers

void CText::OnSetFocus(CWnd* pOldWnd) 
{
	// TODO: Add your message handler code here
	MessageBox("1");
	return;
}

void CText::OnContextMenu(CWnd* pWnd, CPoint point) 
{
	// TODO: Add your message handler code here
	MessageBox("2");
	return;
}

⌨️ 快捷键说明

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