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

javascript - WinJS appendTextAsync producing scheduler errors -

minify - Minimizing css files -

Sockets with kotlin -