📄 readme.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 + -