TEXTBOXA SADECE SAYI GİRME C# KODU


Bu derste çok basit bir kodla textBox'a sadece sayı yazdırmayı öğreneceğiz.

Öncelikle bir Form uygulaması oluşturuyoruz ve form'umuza bir textBox ekliyoruz.

Eklediğimiz textBox'un 'KeyPress' olayına şunları yazıyoruz:

   e.Handled = char.IsLetter(e.KeyChar);

   Eğer textBox'unuza sadece harf girilmesini istiyorsanız:

   e.Handled = char.IsNumber(e.KeyChar);


TEXTBOX A KEYPRESS EKLEME

 txtEscape.KeyPress += new KeyPressEventHandler(txtEscape_KeyPress);

Örnek Kod:

        private void Form1_Load(object sender, EventArgs e)
        {
            txtEscape.KeyPress += new KeyPressEventHandler(txtEscape_KeyPress);
        }

       private void txtEscape_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter)
            {
                yaz();
            }
            if (e.KeyChar == (char)Keys.Escape)
            {
                cik();
            }
        }
        void yaz()
        {
            txtEscape.Text = "Gokhan";
        }

        void cik()
        {
            this.Close();
        }

Hiç yorum yok:

Yorum Gönder