Hello,
I am using SfBusyIndicator.
I have 2 Views (windows) and one ViewModel.
When I have lot of data to load in main View, I open 2nd View wich contains only of SfBusyIndicator that is set to IsBusy = true.
it is running in next steps:
window2.Show();
LoadData();
window2.Close();
Problem is, when I use Show(), code is executing ok, but indicator is not animating. window is shown with freeze indicator, and when data loads, window is closed.
When I use ShowDialog(), window is shown, indicator is animated, but then, execution of code is stopped (because it is "modal" window that is waiting for response, and response is never given).
Why my indicatoris not animating in window when I use Show()?
Thank You,
Vladimir.