private void btnGonder_Click(object sender, EventArgs e) { Singleton nesne = Singleton.Nesne(); if (txtPassWord.Text != txtPassWord2.Text) { MessageBox.Show(" Şifreleriniz Uyuşmuyor !", " UYARI ", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else if (txtAd.Text == string.Empty || txtSoyad.Text == string.Empty || txtId2.Text == string.Empty || txtPassWord.Text == string.Empty || txtPassWord2.Text == string.Empty || txtPosta.Text == string.Empty) { MessageBox.Show(" Boş Alanları Doldurunuz ! ", " UYARI ", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { nesne.veriEkle(txtAd.Text, txtSoyad.Text, txtId2.Text, txtPassWord.Text, txtPassWord2.Text, txtPosta.Text); MessageBox.Show(" Kayıt Tamamlandı.", " BİLGİ ", MessageBoxButtons.OK, MessageBoxIcon.Information); txtAd.Text = string.Empty; txtSoyad.Text = string.Empty; txtId2.Text = string.Empty; txtPassWord.Text = string.Empty; txtPassWord2.Text = string.Empty; txtPosta.Text = string.Empty; } }
private void btnGiris_Click(object sender, EventArgs e) { Singleton nesne = Singleton.Nesne(); nesne.veriOku(txtId.Text, txtPw.Text); }