I would like to use one wait control centered/overlayed over other controls that has a messages set in a viewmodel for when the application is loading or saving data. I thought the WaitIndicator is the way to go but since it is not a container I'm not sure how I can use it to overlay controls. I tried to use the LoadDecorator (see below) but when I set the IsSplashScreenShown (by setting ShowWait in view model) the LoadDecorator appears but hangs the applications.
XAML<dx:LoadingDecorator Grid.Row="0" Grid.Column="0" IsSplashScreenShown="{Binding ShowWait}" SplashScreenDataContext="{Binding}">
<dx:LoadingDecorator.SplashScreenTemplate>
<DataTemplate>
<dx:WaitIndicator DeferedVisibility="True" Content="{Binding WaitMessage}"/>
</DataTemplate>
</dx:LoadingDecorator.SplashScreenTemplate>
Thanks,
Ted