I have a ListBox. The itemsSource of this control is bound to an ObservableCollection. I want to measure the time that begins when I changed the ObservableCollection and ends when the user saw the updated content in the ListBox.
The main problem here is how to determine when this control is executed. I need to do this in code to write the measured time to a log. Any suggestions?
source
share