I have a page1 within a frame which contains a series of Checkboxes and another Frame, checking a box creates a new page2 which is a PageFunction and calls Frame.Navigate(page2).
My page1 code behind assigns a RoutedEventHandler to the new PageFunction page2 and should handle it, but when page2 within the Frame OnReturn is called nothing happens, if I change the navigation to this.navigate instead of my second frame it all works fine. So how do I get the RoutedEventHandler in page1 to pickup my page2 OnReturn?
I am not using MVVM or Magellan
Thanks in advance