CMFCToolBarImages* CMFCToolBar::GetLargeImages() const;
这个方法返回一个指向 CMFCToolBarImages 对象的指针,该对象包含了工具栏按钮的大图标图像列表。
以下是一个简单的示例,演示如何使用 GetLargeImages 方法获取工具栏按钮的大图标图像列表:
CMFCToolBar m_wndToolBar;
// 获取工具栏按钮的大图标图像列表
CMFCToolBarImages* pLargeImages = m_wndToolBar.GetLargeImages();
if (pLargeImages != nullptr)
{
// 现在你可以使用 pLargeImages 进行相应的操作
}
在上述代码中,m_wndToolBar 是你的工具栏对象。通过调用 GetLargeImages 方法,你可以获取工具栏按钮的大图标图像列表,并得到一个指向 CMFCToolBarImages 对象的指针。
请注意,具体的使用方式可能会根据你的项目结构和需求而有所不同。如果你的具体情况需要更多的细节,请查阅相关的 MFC 文档或者代码注释。
转载请注明出处:http://www.zyzy.cn/article/detail/20313/MFC/CMFCToolBar