Example #1
0
 private void toolStripButton8_Click(object sender, EventArgs e)
 {
     if (touchControl == null)
     {
         touchControl = new RoverGround.TouchControl.TouchControl(drawArea);
         touchControl.ShowForm();
     }
     else
     {
         touchControl.CloseForm();
         touchControl = null;
     }
 }
Example #2
0
 private void button2_Click(object sender, RoutedEventArgs e)
 {
     if (touchControl == null)
     {
         touchControl = new TouchControl.TouchControl();
         touchControl.ShowForm();
     }
     else
     {
         touchControl.CloseForm();
         touchControl = null;
     }
 }