Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. private void AddSpecialButton_Click(object sender, RoutedEventArgs e)
  2.         {
  3.             AddSpeciality dlg = new AddSpeciality();
  4.             dlg.Owner = this;
  5.             dlg.Specialities = this.specialities;
  6.  
  7.             if (dlg.ShowDialog() == true)
  8.             {
  9.                 this.specialities = dlg.Specialities;
  10.             }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement