private void button1_Click(object sender, EventArgs e) { SIFRELEME sfr = new SIFRELEME(); sfr.Show(); this.Hide(); sfr.label2.Text = label3.Text; sfr.pictureBox3.ImageLocation = "kullaniciresimleri/" + label3.Text + ".jpg"; }
private void pictureBox5_Click(object sender, EventArgs e) { DialogResult drg = MessageBox.Show("Yeni bir şifreleme yapmak istediğinize eminmisiniz?", "YENİDEN BAŞLAT", MessageBoxButtons.YesNo); if (drg == DialogResult.Yes) { SIFRELEME frm = new SIFRELEME(); this.Hide(); frm.label2.Text = label2.Text; frm.pictureBox3.ImageLocation = pictureBox3.ImageLocation; frm.Show(); } }