예제 #1
0
        private void pictureBox3_Click(object sender, EventArgs e)
        {
            Form kln = new kullanici();

            kln.Show();
            this.Hide();
        }
예제 #2
0
        private void pictureBox4_Click(object sender, EventArgs e)
        {
            Form kapat = new kullanici();

            kapat.Show();
            this.Close();
        }
예제 #3
0
        private void pictureBox2_Click(object sender, EventArgs e)
        {
            Form prs = new kullanici();

            prs.Show();
            this.Hide();
        }
예제 #4
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     if (progressBar1.Value < 100)
     {
         progressBar1.Value = progressBar1.Value + 1;
     }
     else
     {
         timer1.Enabled = false;
         Form kg = new kullanici();
         kg.Show();
         this.Hide();
     }
 }