readme.wzd

来自「本书通过85个实例全面讲述了应用MFC进行Visual C++编程的思想。每个实」· 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 + -
显示快捷键?