📄 two.cpp
字号:
// two.cpp : implementation file
//
#include "stdafx.h"
#include "xiaoxia.h"
#include "two.h"
#include ".\two.h"
// two dialog
IMPLEMENT_DYNAMIC(two, CDialog)
two::two(CWnd* pParent /*=NULL*/)
: CDialog(two::IDD, pParent)
, m_two(0)
{
}
two::~two()
{
}
void two::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(two, CDialog)
ON_BN_CLICKED(IDC_BUTTON3, OnBnClickedButton3)
ON_BN_CLICKED(IDC_BUTTON4, OnBnClickedButton4)
ON_BN_CLICKED(IDC_BUTTON5, OnBnClickedButton5)
ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
ON_BN_CLICKED(IDC_BUTTON2, OnBnClickedButton2)
ON_EN_CHANGE(IDC_EDIT10, OnEnChangeEdit10)
ON_EN_CHANGE(IDC_EDIT3, OnEnChangeEdit3)
ON_EN_CHANGE(IDC_EDIT9, OnEnChangeEdit9)
END_MESSAGE_MAP()
// two message handlers
void two::OnBnClickedButton3()
{
// TODO: Add your control notification handler code here
}
void two::OnBnClickedButton4()
{
// TODO: Add your control notification handler code here
}
void two::OnBnClickedButton5()
{
// TODO: Add your control notification handler code here
}
void two::OnBnClickedButton1()
{
// TODO: Add your control notification handler code here
}
void two::OnBnClickedButton2()
{
// TODO: Add your control notification handler code here
}
void two::OnEnChangeEdit10()
{
// 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
}
void two::OnEnChangeEdit3()
{
// 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
}
void two::OnEnChangeEdit9()
{
// 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 + -