Inside my MainPage constructor I\'m using NavigationService to navigate to another page, but I\'m getting the error:
MainPage
NavigationService
object refe
The page you're navigating to hasn't yet been created in the c'tor. "Loaded" fires after the objects are all created, and is the right spot for doing things like navigating to another page and such.