Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I think I have this figured out, and it wasn't a refresh issue after all. I learned a lot about how the WPF UI works, but in the end I needed to add code to call my sorting routine when just a property changed (not the observable collection). – fussmonkey Oct 28 '12 at 16:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.