Example #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            if (OpenImagDlg.ShowDialog() == DialogResult.OK)

            {
                pictureBox1.Image = Image.FromFile(OpenImagDlg.FileName);
            }
        }
Example #2
0
        private void button4_Click(object sender, EventArgs e)
        {
            if (OpenImagDlg.ShowDialog() == DialogResult.OK)

            {
                pictureBox4.Image = Image.FromFile(OpenImagDlg.FileName);
                button6.Enabled   = true;
            }
        }