private void btnEditProfile_Click(object sender, RoutedEventArgs e) { try { Profile pr = (Profile)dataGrid1.SelectedItem; if (pr.profileCategory.id == 3) { throw new EditingAdminException(); } var ep = new EditingProfile(false, pr.id, this); ep.Show(); } catch (EditingAdminException) { MessageBox.Show("Неможливо редагувати дані адміністратора"); }catch (System.NullReferenceException) { MessageBox.Show("Не вибрано профіль для редагування"); } }
private void btnAddNewProfile_Click(object sender, RoutedEventArgs e) { var ep = new EditingProfile(true, -1, this); ep.Show(); }