Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4970
How to set the right value for DisplayMemberPath for xamcomboeditor?
posted

I use XamComboEditor in following way for databinding:

<ig:XamComboEditor  AllowFiltering="True"  AutoComplete="True"  ItemsSource="{Binding People, Mode=TwoWay}"
DisplayMemberPath="Person.FirstName"    SelectedItem="{Binding MyClass.Person, Mode=TwoWay}"  />

But I want to DisplayMemberPath display the person full name like

DisplayMemberPath="Person.FirstName +Person.LastName "  

How to implement this request?