private void ProfileManagerAddGrouped_Click(object sender, EventArgs e) { var f = new GroupedProfileManager(); f.ShowDialog(); RefreshGroupedProfileList(); }
private void DoProfileManagerEditGrouped(object sender, EventArgs e) { if (ExistingGroupedProfiles.Items.Count > 0) { var f = new GroupedProfileManager(ExistingGroupedProfiles.Items[ExistingGroupedProfiles.SelectedIndex].ToString()); f.ShowDialog(); } else { MessageBox.Show(nManager.Translate.Get(nManager.Translate.Id.NoGroupedProfileToEdit)); } RefreshGroupedProfileList(); }