Ejemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            COZME sfr = new COZME();

            sfr.Show();
            this.Hide();
            sfr.label2.Text = label3.Text;
            sfr.pictureBox6.ImageLocation = "kullaniciresimleri/" + label3.Text + ".jpg";
        }
Ejemplo n.º 2
0
        private void pictureBox5_Click(object sender, EventArgs e)
        {
            if (textBox4.Text != "")
            {
                sil();
            }
            DialogResult drg = MessageBox.Show("Yeniden başlatmak istediğinize eminmisiniz?", "ÇIKIŞ", MessageBoxButtons.YesNo);

            if (drg == DialogResult.Yes)
            {
                COZME frm = new COZME();
                this.Hide();
                frm.label2.Text = label2.Text;
                frm.pictureBox6.ImageLocation = pictureBox6.ImageLocation;
                frm.Show();
            }
        }