Beispiel #1
0
        private void removeButton_Click(object sender, EventArgs e)
        {
            try
            {
                string        group           = groupsBox.Text;
                List <string> checkedSubjects = new List <string>();

                if (group == "")
                {
                    throw new Exception("Jūs turite pasirinkti kažkurią grupę prieš atskirdami dėstomus dalykus");
                }

                if (subjectsListBox.CheckedItems.Count == 0)
                {
                    throw new Exception("Jūs nepasirinkote dėstomų dalykų");
                }

                foreach (string item in subjectsListBox.CheckedItems)
                {
                    checkedSubjects.Add(item);
                }

                foreach (String item in checkedSubjects)
                {
                    subjectsListBox.Items.Remove(item);
                    string title = item;
                    otherData.UnAssignSubjectsToGroup(otherData.FindGroupsId(group), otherData.FindSubjectsId(title));
                }
                MessageBox.Show("Sėkmingai atskyrėte dėstomus dalykus nuo grupės");
                foreach (int checkedItemIndex in subjectsListBox.CheckedIndices)
                {
                    subjectsListBox.SetItemChecked(checkedItemIndex, false);
                }
            }
            catch (Exception exc)
            {
                MessageBox.Show(exc.Message);
            }
        }