readme.wzd
来自「Visual C++高级界面特效制作百例」· WZD 代码 · 共 28 行
WZD
28 行
/////////////////////////////////////////////////////////////////////
// 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 + =
减小字号Ctrl + -
显示快捷键?