yes. this also happened for me.
when items are more than 20 XamComboEditor shows the id of the item
Hello,
It works fine with me. The data is shown properly. Here is the code that I used.
public List<Person> people = new List<Person>(); public Window1() { InitializeComponent(); for (int i = 0; i < 30; i++) { Person p = new Person(); p.Name = "Person "+ i.ToString(); people.Add(p); } xamComboEditor1.ItemsSource = people; xamComboEditor1.DisplayMemberPath = "Name"; } public class Person { public string Name { get; set; } }
Or am I missing something?
Alex.