Is it possible to customize the Results View in ICollectionView?
Now i have so
public ICollectionView PersonsView { get { source = new CollectionViewSource(); source.Source = parent.Persons; return source.View; } } Later, I fill in this ComboBox ( ItemsSource="{Binding Data.PersonsView}" ).
Everything works, but I need what would be displayed in the ComboBox - the first and last name for example, and now only the first name is displayed.
How can I do this?
