Hi

I have a Page that contains a Frame which I'm populating using

Frame1.Source = New System.Uri("Page2.xaml", UriKind.Relative)

I then have some code within Page2 that needs to change the content of the parent Frame (Frame1) to display Page3

How do I do this using code behind in Page2 which is within Frame1?

Mitch