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

📄 comctrex.h

📁 一个记事本编辑器,自己写的,希望对大家有用,十分感谢
💻 H
字号:
#include <windows.h>
#include<commctrl.h>
#include "MyIdDef.h"
#pragma comment(lib,"comctl32.lib") 

int  InitComCtr(){
	int Re;
	INITCOMMONCONTROLSEX icex;// Ensure that the common control DLL is loaded. 
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
icex.dwICC  = ICC_LISTVIEW_CLASSES | ICC_TREEVIEW_CLASSES|ICC_BAR_CLASSES;
Re=InitCommonControlsEx(&icex); 
if (Re){return 1;}else{return 0;}
return 1;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -