The hyperlink button gives you the ability to go to another onclick page.
This screenshot is made from Blend.

So, change your labeling as follows, including the generated Click handler.
<HyperlinkButton x:Name="button" Click="HyperlinkButton_Click" Content="Enter" Height="42" Margin="122,-113,0,0" VerticalAlignment="Top" Width="144" Foreground="#FF50CBC5" Background="#FF0F0E0E" HorizontalAlignment="Left"/>
Then in your cs you need to direct the navigation.
// Button to navigate to sub.xaml page. private void HyperlinkButton_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e) { // Navigate back to sub.xaml page. this.Frame.Navigate(typeof(SubPage)); }
Yvette colomb
source share