C#
I have ToolStripComboBox control. Is there a way to bind this ToolStripComboBox to a list?
ToolStripComboBox
try
List items = new List{"item1", "item2", "item3"}; toolStripComboBox1.ComboBox.DataSource = items;