📄 one.cpp
字号:
// one.cpp : implementation file
//
#include "stdafx.h"
#include "xiaoxia.h"
#include "one.h"
#include ".\one.h"
// one dialog
IMPLEMENT_DYNAMIC(one, CDialog)
one::one(CWnd* pParent /*=NULL*/)
: CDialog(one::IDD, pParent)
, m_one(0)
{
}
one::~one()
{
}
void one::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(one, CDialog)
ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
ON_BN_CLICKED(IDC_BUTTON6, OnBnClickedButton6)
ON_BN_CLICKED(IDC_BUTTON7, OnBnClickedButton7)
END_MESSAGE_MAP()
// one message handlers
void one::OnBnClickedButton1()
{
// TODO: Add your control notification handler code here
}
void one::OnBnClickedButton6()
{
// TODO: Add your control notification handler code here
}
void one::OnBnClickedButton7()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -