📄 info.cpp
字号:
// Info.cpp : 实现文件
//
#include "stdafx.h"
#include "library.h"
#include "Info.h"
// Info 对话框
IMPLEMENT_DYNAMIC(Info, CDialog)
Info::Info(CWnd* pParent /*=NULL*/)
: CDialog(Info::IDD, pParent)
{
}
Info::~Info()
{
}
void Info::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(Info, CDialog)
END_MESSAGE_MAP()
// Info 消息处理程序
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -