Combo box in List box
-
Is there any method to insert a combo box in to list box. I want to allow users to choose items in a list box. It just like check boxes in a list box. But i want to use combo boxes instead of check boxes.
No, there isn't. You'd have to create your own custom control to do this. But, I've never seen or heard of anything like this being done. I have heard of nested listbox controls, but only in WPF, not Windows Forms.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Is there any method to insert a combo box in to list box. I want to allow users to choose items in a list box. It just like check boxes in a list box. But i want to use combo boxes instead of check boxes.
-
Use a
DataGridView
with aDataGridViewComboBoxColumn
[^]Bastard Programmer from Hell :suss:
Good Alternative.