If I have XAML element that is binded to a data source property and the data source changes faster then the human eye can see I am assuming that the UI also gets re drawn faster then the human eye can see and wasting resources. Would it be a good idea for the property change to raise a flag instead of triggering re-draw of UI and then a timer to trigger the UI redraw if the property was changed? or am I missing how the UI gets re-drawn?
Share
You Could use a delyed invocation of raising the property changed event, maybe like this…
Then
Not sure i like it though…