var
testObject = new {Name = "CSV", Price = 100};
List<object> ListDemo = new List<object>();
ListDemo.Add(testObject);
this.cboControl.Cbx.ItemsSource = ListDemo;
this.cboControl.Cbx.DisplayMemberPath = "Name";
this.cboControl.Cbx.SelectedValuePath = "Price";