Myles J
Myles J

Reputation: 2880

Silverlight Application Navigation to a fragment requires the Frame to have content currently

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

Answers (1)

Nikos Tsokos
Nikos Tsokos

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

Related Questions