c# - Making List view scroll in vertical direction -


i using system.windows.forms.listview checkboxes = true can see when list items more can fit ,i horizontal scroll bar.i tried find properties change scroll bar orientation.is there way make scroll in vertical direction?thanks in advance

you need set

listview1.scrollable = true; listview1.view = view.details 

this work correctly if have added columns in listview1, add dummy column. like,

columnheader header = new columnheader(); header.text = ""; header.name = "col1"; listview1.columns.add(header); 

Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

minify - Minimizing css files -

php - How to remove letter in front of the word laravel -