NuGet - Check Combo Box
- Add the CheckComboBox Control in the toolbar. Click here
Step 3:
- Drag the "CheckedComboBox" control from the toolbar to the form to the position where it should be placed
- Add items to the CheckedComboBox control by
for (int i = 0; i < 10; i++)
{
checkedComboBox1.Items.Add(i);
}
This comment has been removed by the author.
ReplyDeletetrying to assign datatable as datasource and set Displaymember and value member as Standard Combobox. but No data is bound. Also how to get the Checked Items from this control on button click event?
ReplyDeleteHow to assign value member to this Check Combo Box and get checked value member form this Check Combo Box
ReplyDeleteThanks
ReplyDeleteThanks. But After I select and click out of the checkComboBox area, it bring forward other window of different application forward. How can we solve that?
ReplyDelete