首页 > 其他分享 >MFC-库存GDI对象

MFC-库存GDI对象

时间:2023-04-16 16:45:43浏览次数:42  
标签:MFC 画刷 画笔 DEFAULT 库存 BRUSH GDI FONT define

 

画刷


#define WHITE_BRUSH    0               //白色画刷
#define LTGRAY_BRUSH   1             //亮灰色画刷
#define GRAY_BRUSH    2                //灰色画刷
#define DKGRAY_BRUSH    3           //暗灰色画刷
#define BLACK_BRUSH   4               //黑色画刷
#define NULL_BRUSH     5                //空画刷
#define HOLLOW_BRUSH= NULL_BRUSH

 

画笔

#define WHITE_PEN    6      白色画笔
#define BLACK_PEN   7       黑色画笔
#define NULL_PEN     8       空画笔

字体

#define OEM_FIXED_FONT    10
#define ANSI FIXED FONT     11
#define ANSI_VAR_FONT       12
#define SYSTEM_FONT         13
#define DEVICE_DEFAULT_FONT    14      windows默认文本字体
#define DEFAULT_PALETTE          15
#define SYSTEM_FIXED_FONT    16
#define DEFAULT_GUL FONT       17

 

 

 

 

 

 

 

标签:MFC,画刷,画笔,DEFAULT,库存,BRUSH,GDI,FONT,define
From: https://www.cnblogs.com/liming19680104/p/17323502.html

相关文章