NuGet - Check Combo Box

Step 1:




Step 2:
  • 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
 Step 4:
  • Add items to the CheckedComboBox control by

       for (int i = 0; i < 10; i++)
            {
                checkedComboBox1.Items.Add(i);
            }



Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. trying 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?

    ReplyDelete
  3. How to assign value member to this Check Combo Box and get checked value member form this Check Combo Box

    ReplyDelete
  4. Thanks. 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

Post a Comment