in my ComboBox I see 3 times this: MyNameSpace.ViewModel.CustomerViewModel ??

Actually this code worked but now don`t know what I changed:

      <ComboBox  DisplayMemberPath="{Binding Path=CustomerName}" SelectedIndex="0" ItemsSource="{Binding CustomersViewModel}" />

Customers is a ObservableCollection

The same code works fine with a ListBox just using DisplayMemberBinding instead of DisplayMemberPath.

What is wrong?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

DisplayMemberPath takes a path, not a Binding. So just set DisplayMemberPath="CustomerName".

link|improve this answer
damn your right, that was it what I changed lol ;P thx! – msfanboy May 15 '10 at 20:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.