hexeidt.cpp

来自「一个canbus通讯软件源代码」· C++ 代码 · 共 41 行

CPP
41
字号
// HexEidt.cpp : implementation file
//

#include "stdafx.h"
#include "test.h"
#include "HexEidt.h"

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

/////////////////////////////////////////////////////////////////////////////
// CHexEidt

CHexEidt::CHexEidt()
{
}

CHexEidt::~CHexEidt()
{
}


BEGIN_MESSAGE_MAP(CHexEidt, CEdit)
	//{{AFX_MSG_MAP(CHexEidt)
	ON_WM_CHAR()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHexEidt message handlers

void CHexEidt::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
	// TODO: Add your message handler code here and/or call default
	
	CEdit::OnChar(nChar, nRepCnt, nFlags);
}

⌨️ 快捷键说明

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