pub fn list_view_set_group_info(
list_view: &ListView,
info: ListViewGroupInfo<'_>,
)
Expand description
Create or update a group inside a list view.
Adapted from [native_windows_gui::ListView::update_item
].
§References
- How to Use Groups in a List-View - Win32 apps | Microsoft Learn
- LVM_SETGROUPINFO message (Commctrl.h) - Win32 apps | Microsoft Learn
- LVM_INSERTGROUP message (Commctrl.h) - Win32 apps | Microsoft Learn
- LVGROUP (commctrl.h) - Win32 apps | Microsoft Learn
- Discussion/Proposal: more ListViewGroup functionality · Issue #2623 · dotnet/winforms · GitHub
- This also links to some source code that sends the above messages.
- Grouping in List View Controls - CodeProject