📄 readme.wzd
字号:
/////////////////////////////////////////////////////////////////////
// Example files.
/////////////////////////////////////////////////////////////////////
WzdBtmap.cpp -- a bitmap class that has its own palette
WzdBtmap.h
WzdLogo.cpp -- a window class that draws a bitmap
WzdLogo.h
WzdTlbar.cpp -- a toolbar class that creates a window in its far
WzdTlbar.h right corner
/////////////////////////////////////////////////////////////////////
// Modify the Mainframe Class.
/////////////////////////////////////////////////////////////////////
// 1) use the new toolbar class
CWzdToolbar m_wndToolBar;
// 2) disable docking for toolbars
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
: : :
// comment out or delete these lines
// m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
// EnableDocking(CBRS_ALIGN_ANY);
// DockControlBar(&m_wndToolBar);
return 0;
}
// 3) to create a static logo in a dockable toolbar, please refer to
// this example in he book
/////////////////////////////////////////////////////////////////////
// From: Visual C++ MFC Programming by Example by John E. Swanke
// Copyright (C) 1999 jeswanke. All rights reserved.
/////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -