How to add value to checkedListBox items

Jurijs Visockis picture Jurijs Visockis · Dec 30, 2015 · Viewed 24.4k times · Source

Is it possible to add to checkedListBox item also value and title

checkedListBox1.Items.Insert(0,"title");    

How to add also value?

Answer

Shaher Jamal Eddin picture Shaher Jamal Eddin · Dec 30, 2015
checkedListBox1.Items.Insert(0, new ListBoxItem("text", "value"));