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

📄 readme.wzd

📁 本书通过85个实例全面讲述了应用MFC进行Visual C++编程的思想。每个实例均以编写一个应用程序要走的步骤编写。全书共分四部分进行介绍
💻 WZD
字号:
/////////////////////////////////////////////////////////////////////
// Edit Toolbar
/////////////////////////////////////////////////////////////////////

// 1) Use the Toolbar Editor to increase the size of a button.

// 2) Use the Bitmap Editor to draw larger buttons.

// 3) To manually increase the size of your toolbar buttons:
	// set toolbar size to 32 by 32 pixels
	SIZE sizeButton, sizeImage;
	sizeImage.cx = 25;					// size of button image in supplied bitmap
	sizeImage.cy = 25;
	sizeButton.cx = sizeImage.cx + 7;	// size of button that toolbar should create for this button
	sizeButton.cy = sizeImage.cy + 7;
	m_wndToolBar.SetSizes(sizeButton, sizeImage);

NOTE: this example contains an enlarged standard toolbar bitmap on the CD

/////////////////////////////////////////////////////////////////////
// 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 + -