示例#1
0
        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("Не вибрано профіль для редагування");
            }
        }
示例#2
0
        private void btnAddNewProfile_Click(object sender, RoutedEventArgs e)
        {
            var ep = new EditingProfile(true, -1, this);

            ep.Show();
        }