Hello everyone,
I have a ListView where i added a vertical scrollbar. In mouse scroll operation it select data from row by row of the ListView
till it get the last row and that time scrollbar also moving down with it. what i want is that, once the mouse scroll operation
reach the last record of the ListView that time scrolling should stop. I want to stop the scrolling of the scrollbar in mouse
wheel operation.
regards,
BB
Loading
Lalit MPosted Jan 5, 2010, 7:19 AM
http://www.codeproject.com/KB/list/ListViewGroupScroll.aspx
about selection in listview show here.
Nilanka DharmadasaPosted Jan 5, 2010, 7:05 AM
You do not have to add scroll bars manually.
If you set following property, it will add scroll bar when needed and you won't come across any issue as mentioned.
listView1.Scrollable = true;
If you find my answer useful, please tick 'Do you like this answer' checkbox.