Ejemplo n.º 1
0
 //TODO - capture a screenshot in the current writing directory
 public override void CaptureScreenShotPNG(string name)
 {
     if (CaptureScreenShots && writingEnabled)
     {
         string filePath = screenShotPath + "/" + name + ".png";
         if (!File.Exists(filePath))
         {
             mainGUI.CaptureScreenShot(filePath);
         }
     }
 }