2

我想创建一个带有自定义图像按钮的工具栏,我有 .ico 格式的图像,如何将它们添加到 WTL 中的工具栏中?我正在尝试编辑工具栏列表中的图像,但是质量很差,如何添加质量更好的图像?

4

1 回答 1

2

如果您已经创建了一个 WTL 工具栏控件,您可以使用类的SetImageList()SetHotImageList()方法将图像附加到它CToolBarCtrl。例如

CToolBarCtrl toolbar;
CImage image;
CBitmap bitmap;

// ... load the image into the bitmap ...

images.Create(32, 32, ILC_COLOR32 | ILC_MASK, 0, 1);

// repeat this for each image you want to use in the toolabr
images.Add(bitmap, RGB(255, 255, 255));

toolbar.SetImageList(images.Detach());

//... do the same for the hot (hover) images ...

然后可以通过引用CImageList:Add()方法的返回值来使用图像。

确保像我在这里所做的那样从类中分离图像列表,CImageList否则图像列表将在超出范围时被删除。

于 2012-09-26T14:21:23.220 回答