I'm using MVVM via Caliburn Micro on WP7. I have a popup that is shown from the VM. On the popup is a performance progress bar. The progress bar does not show when IsIndeterminate is set to true because the popup is not in the visual tree (it is a custom control).
If I grab the view from the view model and force the popup into the visual tree the progress bar displays correctly. I don't really want to do this though.
What is the best way to do this whilst preserving the separation of view and view model. Is there some way the popup can insert itself into the root page or frame?