📄 showmsg.cpp
字号:
// CdlgShowMsg.cpp : 实现文件
//
#include "stdafx.h"
#include "TFont.h"
#include "ShowMsg.h"
// CdlgShowMsg 对话框
IMPLEMENT_DYNAMIC(CdlgShowMsg, CDialog)
CdlgShowMsg::CdlgShowMsg(CWnd* pParent /*=NULL*/)
: CDialog(CdlgShowMsg::IDD, pParent)
{
}
CdlgShowMsg::~CdlgShowMsg()
{
}
void CdlgShowMsg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CdlgShowMsg, CDialog)
END_MESSAGE_MAP()
// CdlgShowMsg 消息处理程序
BOOL CdlgShowMsg::OnInitDialog()
{
CDialog::OnInitDialog();
return TRUE;
// 异常:OCX 属性页应返回 FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -