Esempio n. 1
0
        private void NewAccount_Click(object sender, RoutedEventArgs e)
        {
            var newAccount = new AccountView();

            newAccount.Show();
        }
Esempio n. 2
0
        private void EditAccount_Click(object sender, RoutedEventArgs e)
        {
            var editAccount = new AccountView(selectedAccount.accountID);

            editAccount.Show();
        }