private void button1_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(txt_Adi.Text) && !string.IsNullOrEmpty(txt_Soyadi.Text) && !string.IsNullOrEmpty(txt_EhliyetNo.Text) && !string.IsNullOrEmpty(txt_Telefon.Text) && !string.IsNullOrEmpty(txt_TC.Text) && !string.IsNullOrEmpty(txt_Sifre.Text) && !string.IsNullOrEmpty(txt_Mail.Text) && !string.IsNullOrEmpty(txt_Adres.Text)) { Regex reg = new Regex(@"^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$"); if (!reg.IsMatch(txt_Mail.Text)) { MessageBox.Show("Geçersiz Mail Adresi"); return; } musteriler.Adi = txt_Adi.Text; musteriler.Soyadi = txt_Soyadi.Text; musteriler.EhliyetNo = txt_EhliyetNo.Text; musteriler.Telefon = txt_Telefon.Text; musteriler.TC = txt_TC.Text; musteriler.Sifre = txt_Sifre.Text; musteriler.Email = txt_Mail.Text; musteriler.Adres = txt_Adres.Text; musteriler.UpdateDate = DateTime.Now; db.Entry(db.Musterilers.Find(musteriler.ID)).CurrentValues.SetValues(musteriler); db.SaveChanges(); MessageBox.Show("Guncellendi"); frmMusteriListesi frmMusteriListesi = new frmMusteriListesi(); frmMusteriListesi.Show(); this.Hide(); } else { MessageBox.Show("Alanları Boş Geçmeyiniz.."); } }
private void button2_Click(object sender, EventArgs e) { DialogResult result = MessageBox.Show("Kullanıcı Silinsin Mi?", "Kullanıcı Sil", MessageBoxButtons.YesNoCancel); if (result == DialogResult.Yes) { db.Musterilers.Remove(musteriler); db.SaveChanges(); frmMusteriListesi frmMusteriListesi = new frmMusteriListesi(); frmMusteriListesi.Show(); this.Hide(); } else if (result == DialogResult.No) { return; } }
private void müşterilerToolStripMenuItem_Click(object sender, EventArgs e) { frmMusteriListesi frmMusteriListesi = new frmMusteriListesi(); frmMusteriListesi.Show(); }