📄 wzdwdlg2.cpp
字号:
// WzdDlg2.cpp : implementation of the CWzdWaitDlg class
//
#include "stdafx.h"
#include "resource.h"
#include "WzdWDlg2.h"
/////////////////////////////////////////////////////////////////////////////
// CWzdWaitDlg
CWzdWaitDlg::CWzdWaitDlg()
{
m_pDlg=new CWzdWaitDialog();
m_pDlg->Create(IDD_WAIT_DIALOG);
m_pDlg->ShowWindow(SW_SHOW);
// and since the function that constructs this class
// might not allow the normal WM_PAINT message to get thru:
m_pDlg->UpdateWindow();
}
CWzdWaitDlg::~CWzdWaitDlg()
{
m_pDlg->DestroyWindow();
delete m_pDlg;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -