📄 about.cpp
字号:
// About.cpp : 实现文件
//
#include "stdafx.h"
#include "FLYSNOW.h"
#include "About.h"
#include ".\about.h"
#include "CRDBSDlg.h"
// CAbout 对话框
IMPLEMENT_DYNAMIC(CAbout, CDialog)
CAbout::CAbout(CWnd* pParent /*=NULL*/)
: CDialog(CAbout::IDD, pParent)
{
}
CAbout::~CAbout()
{
}
void CAbout::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAbout, CDialog)
ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
END_MESSAGE_MAP()
// CAbout 消息处理程序
extern CCRDBSDlg maindlg;
void CAbout::OnBnClickedButton1()
{ EndDialog(0);
maindlg.ShowWindow(SW_SHOW);
// TODO: 在此添加控件通知处理程序代码
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -