private void pictureBox3_Click(object sender, EventArgs e) { Form kln = new kullanici(); kln.Show(); this.Hide(); }
private void pictureBox4_Click(object sender, EventArgs e) { Form kapat = new kullanici(); kapat.Show(); this.Close(); }
private void pictureBox2_Click(object sender, EventArgs e) { Form prs = new kullanici(); prs.Show(); this.Hide(); }
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(); } }