Ejemplo n.º 1
0
 private void NavigationView_ItemInvoked(NavigationView sender, NavigationViewItemInvokedEventArgs args)
 {
     if (args.IsSettingsInvoked)
     {
         P_NV_Frame.Navigate(typeof(Settings), this);
     }
 }
Ejemplo n.º 2
0
        private void NavigationViewItem_Tapped(object sender, TappedRoutedEventArgs e)
        {
            switch ((sender as NavigationViewItem).Tag.ToString())
            {
            case "Standart": P_NV_Frame.Navigate(typeof(Standart), this); break;

            case "Discovery": P_NV_Frame.Navigate(typeof(Discovery), this); break;
            }
        }
Ejemplo n.º 3
0
 public StartPage()
 {
     this.InitializeComponent();
     Instance = this;
     P_NV_Frame.Navigate(typeof(Intro), this);
 }