private void button2_Click(object sender, EventArgs e) { menu anamenu = new menu(); anamenu.Show(); this.Hide(); }
private void btngiris_Click(object sender, EventArgs e) { if (txtisim.Text == "" || txtsoyisim.Text == "" || txtadres.Text == "" || lblcinsiyet.Text == "" || txturl.Text == "" || txttc.Text == "" || txtdeneyim.Text == "" || lblegitim.Text == "" || txtuser.Text == "" || txtpassword.Text == "") { MessageBox.Show("Boş Alan Bırakılamaz !", "Başvuru Kaydı Başarısız", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { JobApplication jb = new JobApplication { FirstName = txtisim.Text, LastName = txtsoyisim.Text, Addres = txtadres.Text, Gender = lblcinsiyet.Text, Picture = txturl.Text, Tc = txttc.Text, Phone = txttelefon.Text, Mail = txtmail.Text, Experience = txtdeneyim.Text, Education = lblegitim.Text, username = txtuser.Text, password = txtpassword.Text, }; job.Create(jb); MessageBox.Show("Başvurunuz Başarıyla Tamamlandı! Geri Dönüş Mesajı Mail Adresinize En Yakın Zamanda Gönderilecektir.", "Başvuru Kaydı Başarılı", MessageBoxButtons.OK, MessageBoxIcon.Information); menu menugit = new menu(); menugit.Show(); this.Hide(); } }
private void pictureBox2_Click(object sender, EventArgs e) { menu anamenu = new menu(); anamenu.Show(); this.Hide(); }
private void btngeri_Click(object sender, EventArgs e) { menu geridon = new menu(); geridon.Show(); this.Hide(); }
private void pictureBox1_Click(object sender, EventArgs e) { menu m = new menu(); m.Show(); this.Hide(); }