.net - Scrolling horizontally and vertically ListView WinForms C# -
I have some questions about scrolling list views without using external ListView controls from other vendors (free or paid versions).
-
How to create 2 (or more) ListView is bound together in a way that if I start scrolling a ListView does another one exactly do the same? Is it possible to do with the original 3.5 or 4.0 (when it has been released) the list view?
-
When you try to scroll the list view on right or left using the arrows on the scroll bar, it is very slow. For the fastest way you have to either grab the scroll and take it yourself or have to jump with it, is there any way to speed up the left or right? Like a bit below / up? (Although I think the speed is the same as the length of scrolling is only proportional).
You have to use P / invoke to do this work. You will find the example code in it for a ListBox, it will also work for ListView. Use pinvoke.net to find C # declaration for SendMessage.
I do not know about any fix for scroll increments. The SetScrollInfo API function does not allow small steps to increase the growth.
Comments
Post a Comment