readme.wzd
来自「《Visual C++ MFC编程实例》配套代码」· WZD 代码 · 共 26 行
WZD
26 行
/////////////////////////////////////////////////////////////////////
// Modify any class.
/////////////////////////////////////////////////////////////////////
// 1) to create class object
m_pDlg=new CWzdDialog();
// 2) to create the dialog box (which will be initially hidden)
m_pDlg->Create(IDD_WZD_DIALOG);
// 3) to show dialog box
m_pDlg->ShowWindow(SW_SHOW);
//NOTE: to make a dialog box visible, you can also edit its template's
// property on the "More Styles" page and click the "Visible" style
// 4) to destroy dialog box
m_pDlg->DestroyWindow();
/////////////////////////////////////////////////////////////////////
// From: Visual C++ MFC Programming by Example by John E. Swanke
// Copyright (C) 1998 jeswanke. All rights reserved.
/////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?