Пример #1
0
 /// <summary>
 /// Method for the button that invites a user
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void InviteButton_Click(object sender, RoutedEventArgs e)
 {
     if (_inviteWindow == null)
     {
         _inviteWindow = new InviteWindow();
     }
     _inviteWindow.Show();
 }