コード例 #1
0
 /* Botão "Sair" */
 private void Button_Click_6(object sender, RoutedEventArgs e)
 {
     if (MessageBox.Show("Tem a certeza que quer sair da Aplicação?", "Confirmação", MessageBoxButton.YesNo, MessageBoxImage.Exclamation) == MessageBoxResult.Yes)
     {
         Environment.Exit(1);
     }
     else
     {
         Homepage PaginaInicial = new Homepage();
         this.NavigationService.Navigate(PaginaInicial);
     }
 }
コード例 #2
0
        /* Botão "Voltar à Página Inicial" */
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            Homepage PaginaInicial = new Homepage();

            this.NavigationService.Navigate(PaginaInicial);
        }