Reputation: 789
How do I go about adding the up/down arrows to the column headers that indicate sorted ascending/descending?
Upvotes: 0
Views: 124
Reputation: 15355
See HDM_SETITEM
and HDMITEM
, there is a HDI_ORDER
flag and an iOrder
field.
To get the HWND
of the Header Control itself, use LVM_GETHEADER
.
Upvotes: 2