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

            form.ShowDialog();
        }