If the Sort property of a MetroComboBox is set to true and the control is databound then the DisplayValue is shown as the System.ToString() value of the bound object.
e.g.
class vehicle
{
public string Wheels {get; set;}
public string Engine {get; set;}
}
DisplayValue = Wheels, then combobox shows Myproject.Models.Wheel
If the Sort property of a MetroComboBox is set to true and the control is databound then the DisplayValue is shown as the System.ToString() value of the bound object.
e.g. class vehicle { public string Wheels {get; set;} public string Engine {get; set;} }
DisplayValue = Wheels, then combobox shows Myproject.Models.Wheel