コード例 #1
0
        /// <summary>
        /// Responds to Graphing Request and runs algorithm on specified capture file
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void GraphButton_Click(object sender, EventArgs e)
        {
            string results = Controller.RunAlgorithm((int)AlgorithmUpDown.Value);

            this.graphingChart = Controller.DisplayResults(graphingChart);

            // display the matches' descriptions to the user
            var rtf = new Tools.RtfHelpForm();

            rtf.AddText(results);
        }