mdivk
mdivk

Reputation: 3727

How to make checkedboxlist multiple columns

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:

enter image description here

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

Answers (1)

YasirNisar
YasirNisar

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

Related Questions