コード例 #1
0
        //Calculate recall and precision menu-option was clicked
        private void calculateRecallAndPrecisionToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Create a new form for recall and precision calculation
            XMLComparatorForm xml_cf = new XMLComparatorForm();

            //Display the form in the center of the application
            xml_cf.StartPosition = FormStartPosition.CenterParent;
            xml_cf.ShowDialog(this);
        }
コード例 #2
0
 //Calculate recall and precision menu-option was clicked
 private void calculateRecallAndPrecisionToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //Create a new form for recall and precision calculation
     XMLComparatorForm xml_cf = new XMLComparatorForm();
     //Display the form in the center of the application
     xml_cf.StartPosition = FormStartPosition.CenterParent;
     xml_cf.ShowDialog(this);
 }