?? mathinputdlg.cpp
字號(hào):
//
// 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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -