How do I add checked item(s) in my checkedlistbox to a DataGridView?
问题 I have a dropdownlist that selects category list from Database and display the product name onto the checkedlistbox. But how do I grabs the checked items from the checkedlistbox to the DataGridView? This is how my design looks like: Also, how do I make every medication that has been added to the Gridview has a default value of 1 Quantity? 回答1: Add this code to your Add button click event: private void button1_Click(object sender, EventArgs e) { for (int i = 0; i < checkedListBox1.Items.Count;