Example #1
0
 void TestedBatchOnAllCompleted(BatchRunResult result)
 {
     result.SaveFiles(lastUsedBatchFolder ?? springPaths.WritableDirectory);
     batchResult = result;
     InvokeIfNeeded(() =>
     {
         btnStart.Enabled     = true;
         btnStop.Enabled      = false;
         btnDataSheet.Enabled = true;
         btnGraphs.Enabled    = true;
         MessageBox.Show("Test batch run complete, please open the graph and datasheet by pressing buttons on the left");
     });
 }
        void TestedBatchOnAllCompleted(BatchRunResult result) {
            result.SaveFiles(lastUsedBatchFolder ?? springPaths.WritableDirectory);
            batchResult = result;
            InvokeIfNeeded(() =>
            {
                btnStart.Enabled = true;
                btnStop.Enabled = false;
                btnDataSheet.Enabled = true;
                btnGraphs.Enabled = true;
                MessageBox.Show("Test batch run complete, please open the graph and datasheet by pressing buttons on the left");
            });

        }