//Kullanıcı Ekleme
        private void btnEkle_Click(object sender, EventArgs e)
        {
            if (txtAd.Text=="" || txtSifre.Text=="")
            {
                MessageBox.Show("Lutfen Boşluları Doldurunuz !", "Uyarı");
            }
            else
            {
                DialogResult sonuc = MessageBox.Show("Emin misiniz ?", "Uyarı", MessageBoxButtons.YesNo);
                if (sonuc==DialogResult.Yes)
                {
                    try
                    {
                        Kullanici k = new Kullanici();
                        k.KullaniciAdi = txtAd.Text;
                        k.KullaniciSifre = txtSifre.Text;
                        content.Kullanicis.InsertOnSubmit(k);
                        content.SubmitChanges();

                        MessageBox.Show("Kullanıcı Eklendi","Uyarı");
                    }
                    catch (Exception)
                    {
                        MessageBox.Show("Hata!", "Uyarı");
                    }

                }
                else
                {
                    MessageBox.Show("İptal Edildi");
                }
            }

            Listele();
            txtAd.Clear();
            txtSifre.Clear();
            txtAd.Focus();
        }
 partial void UpdateKullanici(Kullanici instance);
 partial void DeleteKullanici(Kullanici instance);
 partial void InsertKullanici(Kullanici instance);