using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp3
{
public partial class Form1 : Form
{
public string kullaniciadi;
public string sifre;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if(textBox1.Text=="" )
{
MessageBox.Show("lütfen kullanıcı adı giriniz!!!");
}
bool isok = true;
if (textBox1.Text != null)
{
for (int i = 0; i < textBox1.Text.Length; i++)
{
if (!char.IsLetter(textBox1.Text[i]) )
{
isok = false;
break;
}
}
if (isok)
kullaniciadi = textBox1.Text;
else
{
MessageBox.Show("lütfen geçerli kullanıcı adı girin");
textBox1.Text = null;
return;
}
}
else
{
MessageBox.Show("lütfen kullanıcı adı giriniz!");
return;
}
if (textBox2.Text != "" && textBox1.Text!="")
{
MessageBox.Show("kaydınız başarıyla oluşturulmuştur");
textBox1.Text = null;
textBox2.Text = null;
}
else if(textBox2.Text=="")
{
MessageBox.Show("lütfen şifre giriniz");
textBox2.Text = "";
}
}
}
}
Hiç yorum yok:
Yorum Gönder