以下是 Clear 方法的方法签名:
void CMFCToolBarImages::Clear();
通过调用 Clear 方法,您可以移除工具栏图像集中的所有图像,这在某些场景下可能是有用的。例如:
CMFCToolBarImages toolbarImages;
// ... 加载或使用图像 ...
// 清除所有图像
toolbarImages.Clear();
这将从工具栏图像集中移除所有图像,使其成为空集。这在需要替换现有图像集合或动态更改图像集时可能会有用。
转载请注明出处:http://www.zyzy.cn/article/detail/20371/MFC/CMFCToolBarImages