I am using the busy indicator from the Silverlight toolkit. I bind the IsBusy property to a property in my viewmodel to disable content and display it with BusyIndicator. I also use the Prism RegionManager TabControlRegionAdapter to enter views in the tabcontrol.
This usually works fine, but I noticed a strange error. In a script, I disabled content for one view, switched to another tab, threw an event using eventAggregator, which sets the first IsBusy view to false in its viewModel, and then switches back to the first tab. If I do this, the BusyIndicator will disappear, but the content is still disabled.
Thoughts?
jesse source
share