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