internal static void CreateAndShowDialog(GrblCore core, string filename, Form parent, bool append)
 {
     using (RasterToLaserForm f = new RasterToLaserForm(core, filename, append))
         f.ShowDialog(parent);
 }
Exemple #2
0
 internal static void CreateAndShowDialog(GrblCore core, string filename)
 {
     using (RasterToLaserForm f = new RasterToLaserForm(core, filename))
         f.ShowDialog();
 }