Пример #1
0
        private void NewAccount_Click(object sender, RoutedEventArgs e)
        {
            var newAccount = new AccountView();

            newAccount.Show();
        }
Пример #2
0
        private void EditAccount_Click(object sender, RoutedEventArgs e)
        {
            var editAccount = new AccountView(selectedAccount.accountID);

            editAccount.Show();
        }