How to have a fixed listview column width in a windows form application C# ?
using code .... :)
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Datta KharadPosted Nov 9, 2011, 2:59 AM
You should set width of listview as follows:-
listView1.Columns.Add("Col Names",500, HorizontalAlignment.Left);
Width is 500.
If you got correct answer then mark as Accepted Answer.