📄 book.cpp
字号:
// book.cpp : implementation file
//
#include "stdafx.h"
#include "k.h"
#include "book.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// book dialog
book::book(CWnd* pParent /*=NULL*/)
: CDialog(book::IDD, pParent)
{
//{{AFX_DATA_INIT(book)
m_1111 = _T("");
m_2222 = _T("");
m_3333 = 0.0;
m_4444 = 0;
//}}AFX_DATA_INIT
}
void book::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(book)
DDX_Text(pDX, IDC_1111, m_1111);
DDX_Text(pDX, IDC_2222, m_2222);
DDX_Text(pDX, IDC_3333, m_3333);
DDX_Text(pDX, IDC_4444, m_4444);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(book, CDialog)
//{{AFX_MSG_MAP(book)
ON_EN_CHANGE(IDC_3333, OnChange3333)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// book message handlers
void book::OnChange3333()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -