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

📄 readme.wzd

📁 《Visual C++ MFC编程实例》配套代码,如果大家正在学习此教程
💻 WZD
字号:
/////////////////////////////////////////////////////////////////////
// Modify any class.
/////////////////////////////////////////////////////////////////////

	HICON hicon;

// 1) to load from application resources
	HICON hicon=AfxGetApp()->LoadIcon(IDR_MAINFRAME);

// 2) to then draw that icon
	pDC->DrawIcon(0,0,hicon);


// 3) to load from an .ico disk file
	hicon = (HICON)LoadImage(
		NULL,				// handle of the instance that contains the image
		"Wzd.ico",			// name or identifier of image
		IMAGE_ICON,			// type of image-- can also be IMAGE_CURSOR or IMAGE_ICON 
		0,0,				// desired width and height
		LR_LOADFROMFILE);	// load flags-- with LR_LOADTRANSPARENT makes transparent to bkgrnd

// 4) to draw
	pDC->DrawIcon(50,50,hicon);

// 5) when loaded using LoadImage(), you must destroy icon:
 	DestroyIcon(hicon);

// 6) to load from an exe or dll file
	HINSTANCE hinst=AfxGetInstanceHandle();
	hicon=ExtractIcon(hinst,"Debug\\wzd.exe",1); // gets the second icon (-1 returns # of icons)

// 7) draw and destroy as before
	pDC->DrawIcon(100,100,hicon);
	DestroyIcon(hicon);


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