コード例 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            Kullanici kullanici = new Kullanici();

            kullanici.KullaniciAd    = textBox1.Text;
            kullanici.KullaniciSifre = textBox2.Text;

            if (Kullanicilar.KullaniciDenetim(kullanici) == true)
            {
                MessageBox.Show("Giriş Başarılı");
                KullaniciGoruntule kg = new KullaniciGoruntule();
                kg.Show();
            }

            else
            {
                MessageBox.Show("Hata Alındı");
            }
        }