Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
finished databinding event on XamDataGrid
posted

I have a class that inherits from XamDataGrid to specialize it for our application. It is data bound by setting its DataSource to a ViewModel property which fires OnPropertyChanged on its setter. All standard MVVM pattern.

Now I would like to do something after the data source has changed and the grid has finished databinding. I only want to do my action once and only after data binding is finished. I don't want to do it in the ViewModel, but in my specialized XamDataGrid class. So I was looking for an event that fires when data binding is finished. I would guess this is a common WPF scenario, but I cannot find that event.

Any help is much appreciated.