I've added a GridControl in my View(xaml). The DataContxt of this view is my ModelView class. I've binded the DataSouce of the grid to a property of my ModelView class. The data are loading and displaying successfully. Now what I want is whenever the GridControl is loaded/reloaded, the instance of this grid should be passed to my ViewModel class. I'm following MVVM.
The purpose of getting the instance is that I want to change the DataSource or use it for PrintPreview in some events/actions.
Please note that I can get the instance in the code behind class of my View(where actually I've added the grid control) with the Load event. But I want the instance to my separate ViewModel class.
Thanks, Maftahur