|
分類:[C#]
windouws formでアプリを作っておりform1とform2があります。 form1で画像を2枚表示して、form2でその2枚の画像の片方を透かして表示したいです。
form1 pictureBox1 pictureBox2 button1 button2 button3 form2 pictureBox1 pictureBox2
public partial class Form1 : Form { public Form3() { InitializeComponent(); }
private void button1_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() == DialogResult.OK) { pictureBox1.ImageLocation = openFileDialog1.FileName; } }
private void button2_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() == DialogResult.OK) { pictureBox2.ImageLocation = openFileDialog1.FileName; } }
private void button3_Click(object sender, EventArgs e) { Form5 fm4 = new Form5(); fm4.Show(); fm4.pictureBox1.Image = this.pictureBox1.Image; fm4.pictureBox2.Image = this.pictureBox2.Image; }
}
上記まではできているのですがform2ができません インターネットで調べてはみましたがいまいちわからず どなたかご教授よろしくお願いします。
|