C#
I have ToolStripComboBox control. Is there a way to bind this ToolStripComboBox to a list?
ToolStripComboBox
You might also need to set ComboBox.BindingContext to Form's BindingContext property:
toolStripComboBox1.ComboBox.BindingContext = this.BindingContext;