Esempio n. 1
0
        private void tagsOrNoteToolButton_Click(object sender, EventArgs e)
        {
            if (current == null)
            {
                MessageBox.Show("Select a problem first.");
                return;
            }
            ProblemCategoryViewer pcv = new ProblemCategoryViewer(current);

            pcv.ShowDialog();
        }
Esempio n. 2
0
 private void tagsOrNoteToolButton_Click(object sender, EventArgs e)
 {
     if (current == null)
     {
         MessageBox.Show("Select a problem first.");
         return;
     }
     ProblemCategoryViewer pcv = new ProblemCategoryViewer(current);
     pcv.ShowDialog();
 }