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

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -