函数原型如下:
BOOL ListView_DeleteItem(
HWND hwnd,
int i
);
参数说明:
- hwnd:指定要删除项的列表视图控件的句柄。
- i:指定要删除的项的索引。
函数返回值:
- 如果函数成功,返回值为 TRUE。
- 如果函数失败,返回值为 FALSE。
使用示例:
#include <Commctrl.h>
// 假设 hwndListView 是你的列表视图控件的句柄,要删除的项的索引为 index
HWND hwndListView; // 假设这是你的列表视图控件的句柄
int index = 2; // 假设要删除的项的索引是 2
BOOL success = ListView_DeleteItem(hwndListView, index);
if (success) {
// 删除成功
} else {
// 删除失败
}
这个函数用于在运行时从列表视图控件中删除指定索引的项。
转载请注明出处:http://www.zyzy.cn/article/detail/24707/Win32 API/Commctrl.h/ListView_DeleteItem