#define CBS_BMP_16X16 0x0000 |
#define CBS_BMP_32X32 0x0001 |
#define CBS_BMP_CUSTOM 0x0002 |
The item bitmap has customized size.
int item_width = 20; int item_height = 20; CreateWindowEx (CTRL_COOLBAR, ..., MAKELONG (item_width, item_height)));
#define CBS_USEBKBMP 0x0004 |
The control has a background bitmap.
const char* file_bkgnd = "res/my_bkgnd.gif"; CreateWindowEx (CTRL_COOLBAR, file_bkgnd, ...);