I'm using the ObjectListView object in my C# program, and I want to know if I can change the default Sort behavior.
Out of the box, the control sorts columns in an Ascending order the first time each column is clicked on. But I want the first time each column is sorted to be a Descending sort. Is this possible? The users of my app don't want to have to click every column Twice to get to the Descending sort of the column.
This column click sorting behavior is hard coded. Maybe you can work around that, by setting the sort order to "Ascending" on startup (one for each column), so the first click will result in descending.