Reputation: 3727
I am using VS2008 on my home computer to develop a windows form application.
I need to use a CheckedListBox, here is the current CheckedListBox:
I am wondering how can I make it showing two or more columns instead of one at the time.
It would be really appreciated if you can share some code snippets.
Thank you.
Upvotes: 0
Views: 422
Reputation: 42
If you want a two column control, either use a DataGridView or a ListView control. By setting a ListView control's View property to View.Details, you can use it as a multicolumn grid.
Upvotes: 0