コード例 #1
0
        private void Savings_Click(object sender, RoutedEventArgs e)
        {
            ActionAccount p2 = new ActionAccount("Savings", this.acc);

            this.NavigationService.Navigate(p2);
        }
コード例 #2
0
ファイル: Transfers.xaml.cs プロジェクト: Varun66/BankingApp
        private void Back_Click(object sender, RoutedEventArgs e)
        {
            ActionAccount p6 = new ActionAccount(this.type, this.acc);

            this.NavigationService.Navigate(p6);
        }
コード例 #3
0
        private void Checking_Click(object sender, RoutedEventArgs e)
        {
            ActionAccount p1 = new ActionAccount("Checking", this.acc);

            this.NavigationService.Navigate(p1);
        }