0

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.

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
Chris
  • 2,148
  • 8
  • 31
  • 52

1 Answers1

0

Are you loading the data for this view async ?

If the data is not already loaded when you display the view, you could try to delay the loading until the grid is visible, the load the data and finally set the binding to the grid in codebehind, something like this:

private delegate void LoadDelegate();
this.Dispatcher.BeginInvoke(DispatcherPriority.Background, new LoadDelegate(LoadOrders));

This will give the gui a chance to show itself before the loading starts.

HTH.

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
Kai
  • 241
  • 1
  • 2