Hi,
For the moment, No. The text that will appear in the ComboBox is the Name of the Type ( a Person in this case ). But if you really need this, create an issue and we will look at it when we have time.
In the meantime, if you want to the listBox to show the something else than <Person>, you can override the ToString method of the Person class :
For the moment, No. The text that will appear in the ComboBox is the Name of the Type ( a Person in this case ). But if you really need this, create an issue and we will look at it when we have time.
In the meantime, if you want to the listBox to show the something else than <Person>, you can override the ToString method of the Person class :
public override string ToString()
{
return this.FirstName + " " + this.LastName;
}