?? 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 + -