Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Horizontal scroll winforms listview

Anyone know if its possible to enable horizontal scrolling ONLY in a windows forms listview (viewmode set to large icons). What I want to do is make a listview whose height is sufficient to only show one row of icons, and I don't want to have multiple rows. Just one very long row that a user would have to scroll horizontally to get to out-of-range icons. If I make the listview scrollable then it automatically makes multiple rows and puts in a vertical scrollbar, which I don't want.

Thanks in advance!

like image 987
tempy Avatar asked Jun 25 '09 15:06

tempy


1 Answers

Set the Alignment property to Left (or ListViewAlignment.Left if you do it in code).

like image 151
Fredrik Mörk Avatar answered Nov 03 '22 04:11

Fredrik Mörk