//show the edit grading categories form (changes will be saved on that form so no action needs
 //  to be taken once the form is closed)
 private void lnkEditGradingCategories_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     EditGradeCategoriesForm form = new EditGradeCategoriesForm(currentClassId);
     form.ShowDialog();
 }
Example #2
0
        //show the edit grading categories form (changes will be saved on that form so no action needs
        //  to be taken once the form is closed)
        private void lnkEditGradingCategories_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            EditGradeCategoriesForm form = new EditGradeCategoriesForm(currentClassId);

            form.ShowDialog();
        }