Пример #1
0
        private void ProfileManagerAddGrouped_Click(object sender, EventArgs e)
        {
            var f = new GroupedProfileManager();

            f.ShowDialog();
            RefreshGroupedProfileList();
        }
Пример #2
0
 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();
 }