private void button1_Click(object sender, EventArgs e) { TabPage tpgallery = new TabPage(); tpgallery.Name = "tpgallery"; tpgallery.Text = " Gallery "; tabControl1.TabPages.Add(tpgallery); picturebox1 = new PictureBox(); picturebox1.Name = "picturebox1name"; picturebox1.Image = WindowsFormsApplication7.Properties.Resources.logo1; tpgallery.Controls.Add(picturebox1); }
private void button2_Click(object sender, EventArgs e) { picturebox1.Image = WindowsFormsApplication7.Properties.Resources.logo2; }