Ejemplo n.º 1
0
 private void SaveSettings_Click(object sender, EventArgs e)
 {
     StepExecution stepExecution = new StepExecution();
     stepExecution.SaveOrLoad("save settings");
 }
Ejemplo n.º 2
0
 private void SaveSolution_Click(object sender, EventArgs e)
 {
     StepExecution stepExecution = new StepExecution();
     stepExecution.SaveOrLoad("save solution");
 }
Ejemplo n.º 3
0
 // save and load
 private void SaveBenchmark_Click(object sender, EventArgs e)
 {
     StepExecution stepExecution = new StepExecution();
     stepExecution.SaveOrLoad("save benchmark");
 }
Ejemplo n.º 4
0
        private void display_Paint(object sender, PaintEventArgs e)
        {
            // for testing only
            /*
            StepExecution stepExecution = new StepExecution();
            stepExecution.Test();
            */

            StepExecution stepExecution = new StepExecution();
            // stepExecution.DrawBoards();
            stepExecution.DrawNewDisplay();
        }
Ejemplo n.º 5
0
 private void buttonSingleStep_Click(object sender, EventArgs e)
 {
     StepExecution stepExecution = new StepExecution();
     stepExecution.ExecuteStep(0);
 }
Ejemplo n.º 6
0
 private void buttonSelectView_Click(object sender, EventArgs e)
 {
     StepExecution stepExecution = new StepExecution();
     stepExecution.SetContentToShow();
 }
Ejemplo n.º 7
0
 private void buttonQuickStep_Click(object sender, EventArgs e)
 {
     StepExecution stepExecution = new StepExecution();
     stepExecution.ExecuteStep(1);
     // stepExecution.DrawRects();
 }