I have a WPF application that is performing strangely when it comes to refreshing. I have a tab control with child pages being loaded into a frame on each tab page.
On one tab page, I have a listview that is displaying results; this is populated by data binding. I have implemented sorting on the listview when you click the column headers.
The problem I'm having is that when the properties on the data object are updated, the listview is not re-drawing to reflect the correct sorting. When I click on another tab and then click back to the first tab, then it's redrawn.
I've tried various methods to get this working, such as
this.InvalidateVisual();
and
this.Dispatcher.Invoke((Action)delegate { this.InvalidateVisual(); }, System.Windows.Threading.DispatcherPriority.Render);
I've done that where 'this' is the child page, as well as on the main window, the frame the child page is loaded on, the tab control, and the listview itself. Nothing has worked - the refresh only ever seems to occur when I leave and re-enter the tab. I'm clearly missing something in regards to WPF visualization.
I can post code if it's necessary, but there is an awful lot of code so I wasn't sure what would be helpful.