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