在 MFC(Microsoft Foundation Classes)的 CListCtrl 类中,CListCtrl::RemoveGroup 是一个公共方法,用于移除指定 ID 的分组。

以下是 RemoveGroup 方法的签名:
BOOL RemoveGroup(int nGroupID);

参数:
  •  nGroupID:要移除的分组的 ID。


返回值:
  •  如果成功,则返回非零值;否则返回零。


示例:
// 假设 pListCtrl 是你的 CListCtrl 对象指针
int nGroupID = 1; // 要移除的分组的 ID

pListCtrl->RemoveGroup(nGroupID);

这个方法用于移除具有指定 ID 的分组。如果成功,返回非零值;否则返回零。请注意,这不会移除项,只是移除了指定 ID 的分组。


转载请注明出处:http://www.zyzy.cn/article/detail/18546/MFC/CListCtrl