I'm trying to set the datasource value of a listbox to a strongly-typed collection.

.DataSource = myVehicleCollection
.ValueMember = "Item"
.DisplayMember = "ToString"

The Item property in my collection returns a single vehicle.

On load of the form, I keep getting an error stating the ValueMember could not be set.