Home button on every page?

A real newbie question here, but I haven’t found an answer by searching the forum. Is there a way to put a link to the “Home” (my default startup page) on every page, preferably at the top right?

I would use the slide out navigation drawer & add your link there (MainPage.xaml). Those MenuItems are accessible from every page. Or if you prefer to have a button on the top left you can do that too, but you’ll need to copy-paste it to every page.

Thanks! The navigation link to my “home” page is on that side of nav drawer, but I was looking to add a single tap icon that is always present. Is it possible to put it on the title line at the top?

You can add a AppBarButton to the PrimaryCommands set. Have the Clicked EventTrigger call a MethodAction that opens the desired page.

That’s great. I used GoToPage instead of OpenPage, because I didn’t need the “back” navigation. Unfortunately, since my home page is a Tab page, it displays the last used tab, but I can live with that. Thanks!