BindingList with my class populating a ComboBox using a property of it?
I have a BindingList with my class where I would like to populate a ComboBox using a property of it so when my list changes the ComboBox would change as well. public class UserAccess { public override string ToString() { return Access; } public int AccessId { get; set; } public string Access { get; set; } public List<string> Command = new List<string>(); public bool HasCommand(string cmd) { return this.Command.Any(x => x == cmd); } } public BindingList<UserAccess> accessList = new BindingList<UserAccess>(); On my form load I assign it to the ComboBox: myComboBox.DataSource = accessList; I want