Reputation: 771
I have managed to run magellan's (a library which helps with navigation between pages) hello world project so far. The problem is that I don't know how to get rid of the back/forward buttons - those in the picture:
I think they are there by default there, regardless of the library.
For the library to work, I got to insert this line in MainWindow.xaml:
<Frame x:Name="MainFrame" />
Is there a way to make the buttons go away?
Thank you in advance.
Upvotes: 0
Views: 847
Reputation: 4470
Try like this:
<Frame x:Name="MainFrame" NavigationUIVisibility="Hidden" />
Upvotes: 3