mathinputdlg.cpp

来自「这是在wince下面可以跑的一个画函数的软件」· C++ 代码 · 共 58 行

CPP
58
字号
//
//	Graphite For WinCE(Pocket PC)
//  Initially Written By Hyouck "Hawk" Kim, peakhunt@yahoo.com
//	2002, All Rights Reserved
//
//	This is GPLed, open source based, software development project.
//	For more question about GPL,
//	visit http://www.gnu.org/licenses/gpl.txt
//
//	
//	Revision History
//	Nov/30/2002,		Initial Release		hkim	
//
//

// MathInputDlg.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "MathInputDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMathInputDlg dialog


CMathInputDlg::CMathInputDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CMathInputDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMathInputDlg)
	m_math_input = _T("");
	//}}AFX_DATA_INIT
}


void CMathInputDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMathInputDlg)
	DDX_Text(pDX, IDC_MATH_INPUT, m_math_input);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CMathInputDlg, CDialog)
	//{{AFX_MSG_MAP(CMathInputDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMathInputDlg message handlers

⌨️ 快捷键说明

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