I have a combobox with objects of Foo type, here is the Foo class:
Foo
public class Foo { public string name { get; set; } public s
These 2 commands will remove an item from your data source.
list.Remove((Foo)comboBox1.SelectedItem);
or
list.Remove(list.Find(P=>P.name == comboBox1.SelectedText));