Reputation: 2880
One of our users has recently reported the following error popping up on our production Silverlight application:
"Navigation to a fragment requires the Frame to have content currently"
I've Googled it but there doesn't seem to be too much information regarding the error. Does anyone know exactly what this error means?
Upvotes: 1
Views: 492
Reputation: 3356
In my case this happens when you first set the content of the frame to null as the following:
this.ContentFrame.Content = null;
this.ContentFrame.Navigate(uri);
Upvotes: 1