im using this code and i want to make another page to navigate to the login page but i can’t get it to work.
<App Theme="Basic" ClearColor="#39ADA8">
<DockPanel>
<StatusBarBackground DockPanel.Dock="Top" />
<Font File="Assets/Bold.otf" ux:Name="Bold"/>
<HierarchicalNavigation ux:Name="_nav"/>
<!-- Test Area -->
<!-- End of test area -->
<!-- This is the main page for the app -->
<Page ux:Name="Main">
<Panel>
<Image File="Assets/Main.png" Alignment="Top"/>
<Image File="Assets/MainText.png" Alignment="Bottom" Margin="0, 0, 0, 130" Padding="10"/>
<Image File="Assets/LoginB.png" Alignment="BottomLeft" Height="150">
<WhilePressed>
<Scale Factor="1.1"/>
<NavigateTo Context="_nav" Target="login"/>
</WhilePressed>
</Image>
<Image File="Assets/RegisterB.png" Alignment="BottomRight" Height="150">
<WhilePressed>
<Scale Factor="1.1"/>
</WhilePressed>
</Image>
</Panel>
</Page>
<!-- End of main page -->
<!-- This the login page for the app -->
<Page ux:Name="login">
</Page>
<!-- End of login page -->
</DockPanel>