Example #1
0
 private void pictureBox1_Click(object sender, EventArgs e)
 {
     if (isautosave)
         System.Diagnostics.Process.Start(textBox1.Text);
     else
     {
         ImageEditor img = new ImageEditor(this.pictureBox1.Image.Clone() as Image);
         img.Show();
     }
 }
Example #2
0
 public void ShowForm()
 {
     ImageEditor editor = new ImageEditor(image);
     editor.Show();
 }