I have a WPF application - using MVVM for the design pattern.
In the Main View, there is a ContentPresenter
that is bound to a property in the corresponding ViewModel. I have type-referential DataTemplate
for the data type associated with that property. Essentially, based on a certain action performed by the user, the ContentPresenter
will display the data from a specific data template. In the data template I have DevExpress' GridControl
. It sucks and I hate it, but due to company standards, I have to use it. My main pain point is that it takes several noticeable seconds for the UI to render to data template because of this GridControl
. Is there anything that I can do to mitigate this? I'd like to display a "please wait" progress indicator, but even that gets stuck for several seconds...
Please help.