예제 #1
0
 private void UpdateAccountButton_Click(object sender, RoutedEventArgs e)
 {
     if (currentAccount != null)
     {
         AddMailAccount addMailAccount = new AddMailAccount(this, currentAccount);
         addMailAccount.Show();
     }
 }
예제 #2
0
        private void AddMailAccountClick(object sender, RoutedEventArgs e)
        {
            AddMailAccount addMailAccount = new AddMailAccount(this);

            addMailAccount.Show();
        }