Silverlight BusyIndicator : Higher Z-Index than all ChildWindows
Perhaps the title is worded incorrectly. I have a "global" Busy Indicator that works great, as long as I don't try to use it when a ChildWindow is open. I access the "global" Busy Indicator by using a static method in my App.xaml.cs: BusyIndicator b = (BusyIndicator)App.Current.RootVisual; if (b != null) { b.BusyContent = busyText; b.IsBusy = true; } However, if a ChildWindow is open, the BusyIndicator is always behind it. I thought that I could set b.Content = VisualTreeHelper.GetOpenPopups().First() , but that didn't work either. Does anyone have any tips on having a BusyIndicator on top of