示例#1
0
        private void StopEvaluation()
        {
            if (ValueDisplayer.IsEvaluationRunning)
            {
                ValueDisplayer.InterruptEvaluation();
            }

            CancelValueFormattersDisplaying = true;
        }
示例#2
0
        private void closeButton_Click(object sender, EventArgs e)
        {
            if (ValueDisplayer != null && ValueDisplayer.IsEvaluationRunning)
            {
                CancelValueFormattersDisplaying = true;
                ValueDisplayer.InterruptEvaluation();
            }

            evaluationLogListBox.Items.Clear();
            Close();
        }