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