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

📄 inia1.cpp

📁 这是书上的代码
💻 CPP
字号:
// Inia1.cpp : implementation file//written by  熊英

//

#include "stdafx.h"
#include "XYCALC.h"
#include "Inia1.h"

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

/////////////////////////////////////////////////////////////////////////////
// CInia1

CInia1::CInia1()
{
}

CInia1::~CInia1()
{
}


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

/////////////////////////////////////////////////////////////////////////////
// CInia1 message handlers

void CInia1::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
	// TODO: Add your message handler code here and/or call default
	if(nChar>='0'&&nChar<='9')
	{
		CEdit::OnChar(nChar, nRepCnt, nFlags);
	}
   if(nChar=='+'||nChar=='-'||nChar=='*'||nChar=='/')
   {
	  
   }
}

⌨️ 快捷键说明

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