Ejemplo n.º 1
0
        private void открытьToolStripMenuItem_Click(object sender, EventArgs e)
        {
            EditNewForm form = new EditNewForm();

            form.Owner = this;
            form.ShowDialog();
        }
Ejemplo n.º 2
0
        private void Edit_Load(object sender, EventArgs e)
        {
            image             = new Bitmap(pictureBox1.Width, pictureBox1.Height);
            graph             = Graphics.FromImage(image);
            pictureBox1.Image = image;

            EditNewForm form = new EditNewForm();

            form.Owner = this;
            form.ShowDialog();
        }