c# ile Kullanıcı Girişi (Şifreli)
Formumuzu bu şekilde oluşturduktan sonra yeni bir form açıyoruz.
Sonra GİRİŞ butonuna basıp şu kodları yazıyoruz.
{
if (textBox1.Text == "admin" && textBox2.Text == "12345")
{
Form2 yeni = new Form2();
yeni.Show();
this.Hide();
}
else
{
MessageBox.Show("Hatalı Giriş Yaptınız.");
TextBox1.Clear();
TextBox2.Clear();
}
çalışmamız tamamlanmıştır. İyi Çalışmalar Dilerim:)
Sonra GİRİŞ butonuna basıp şu kodları yazıyoruz.
{
if (textBox1.Text == "admin" && textBox2.Text == "12345")
{
Form2 yeni = new Form2();
yeni.Show();
this.Hide();
}
else
{
MessageBox.Show("Hatalı Giriş Yaptınız.");
TextBox1.Clear();
TextBox2.Clear();
}
çalışmamız tamamlanmıştır. İyi Çalışmalar Dilerim:)
Yorumlar
Yorum Gönder