Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# ListView Vertical Scroll

I have been using a Winform ListView in my project. When the list view (items arranged in list) exceeds the window space it starts a new list on the right and creates a horizontal scroll bar, I need it to carry on the list below and the scroll bar to be vertical. I have mananged to do this using the suggestions from a similar Stack Overflow question but it creates columns, which I don't want, unless there is a way to hide this? Thanks.

like image 316
Bali C Avatar asked Aug 03 '11 08:08

Bali C


2 Answers

The SmallIcon view might be more suitable to you since it looks pretty much like the List, instead of the items are oriented vertically.

like image 126
Libor Avatar answered Nov 15 '22 09:11

Libor


I'd start by reading this.

http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.view.aspx

The list view behaves in rather different ways depending on the setting of the View property. Microsoft have explained it fairly well.

like image 23
Jodrell Avatar answered Nov 15 '22 08:11

Jodrell