I have an application (winforms, C #) that displays data in Listview in the usual way - the first row is the header, the first column in each row is the header, and the next sub-elements are the data itself.
I want the first column (header columns) to always be visible, and horizontal scrolling only affects the other columns.
I do not think that this is possible in winforms listview (am I mistaken?). Therefore, I am going to split the list into two lists β one for the headers and one for the data. In this case, I need to connect vertical scrollbars - a task that I find more difficult than I expected.
Am I accepting the wrong way (for example, would it be easier to use another control)? If not, pointers on how to implement it?
Note: Winforms Listview has a poor API (for example, without scrolling) and is known as a buggy, so I am looking for a working sample, not MSDN links ...
thanks
source share