hi all how can i add items and there values to windows application form ( checkboxlist) ? and when i check on some items name i need to get all values i choose > please help me :)
foreach (Object item in checkedListTrainingRoom.CheckedItems) { MessageBox.Show(item.ToString() + " is Checked"); }
foreach (KeyValuePair<string,string> item in checkedListTrainingRoom.CheckedItems) { string value = item.Value; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)