Ejemplo n.º 1
0
        private void Savings_Click(object sender, RoutedEventArgs e)
        {
            ActionAccount p2 = new ActionAccount("Savings", this.acc);

            this.NavigationService.Navigate(p2);
        }
Ejemplo n.º 2
0
        private void Back_Click(object sender, RoutedEventArgs e)
        {
            ActionAccount p6 = new ActionAccount(this.type, this.acc);

            this.NavigationService.Navigate(p6);
        }
Ejemplo n.º 3
0
        private void Checking_Click(object sender, RoutedEventArgs e)
        {
            ActionAccount p1 = new ActionAccount("Checking", this.acc);

            this.NavigationService.Navigate(p1);
        }