⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.wzd

📁 Visual C++高级界面特效制作百例 本书通过100个实例全面讲述了应用Visual C++的MFC进行高级界面编程的思想。书中均以一个实例的详细实现步骤为引子
💻 WZD
字号:
/////////////////////////////////////////////////////////////////////
// Modify any class.
/////////////////////////////////////////////////////////////////////

// 1) use the ClassWizard to add a UPDATE_COMMAND_UI handler for a menu command
void CWzdView::OnUpdateWzdType(CCmdUI* pCmdUI) 
{

// 2) use CCmdUI::Enable to enable/disable the command
	// m_bWzd determines whether menu item should be enabled
	pCmdUI->Enable(m_bWzd);
}

// 3) to enable all menu commands, add the following to your application's CMainFrame
// class's constructor:
CMainFrame::CMainFrame()
{
	// enables all menu commands--even those without a function handler
	m_bAutoMenuEnable=FALSE;
}


/////////////////////////////////////////////////////////////////////
// From: Visual C++ MFC Programming by Example by John E. Swanke
// Copyright (C) 1998 jeswanke. All rights reserved.
/////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -