I am going to develop a view for messages history like in skype. I want to provide grouping and searching i.e. all message of same date should be in one group and also user can search for text/message in history. Both functionality is available in WinForms ListView, but I am using WPF ListView.
Help me how to do this. Tell me if i need to replace ListView with any other element.
As for grouping, you could use GroupDescriptions of the CollectionViewSource like this:
As For filtering:
Add textbox:
View model: