void CToolBarCtrl::SetHotImageList(CImageList* pImageList);
其中:
- pImageList 参数是一个指向 CImageList 对象的指针,表示热点状态的图像列表。
这个方法没有返回值。
示例用法:
// 假设 pToolBar 是 CToolBarCtrl 对象的指针
// 假设 pHotImageList 是 CImageList 对象的指针
// 设置热点状态的图像列表
pToolBar->SetHotImageList(pHotImageList);
这个方法通常用于在鼠标悬停在工具栏按钮上时显示相应的图像。如果有关 MFC 类的最新信息,建议查阅最新的 MFC 文档或在线资源。
转载请注明出处:http://www.zyzy.cn/article/detail/22721/MFC/CToolBarCtrl