Programlama ve Elektronik

Programlama ve Elektronik (http://www.proelo.com/)
-   Örnek Kodlar (http://www.proelo.com/ornek-kodlar-87/)
-   -   Sayısal TextBox Oluşturma (http://www.proelo.com/ornek-kodlar-87/sayisal-textbox-olusturma-714/)

McDroPp 17. May 2008 03:44 AM

Sayısal TextBox Oluşturma
 
/*Gürkan Alkan
* -->İstanbul Üniversitesi Bilgisayar Mühendisliği<--
*/

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace SayisalTextbox
{
public class SayisalText:TextBox//TextBox'tan miras aldı
{
public SayisalText()
{
this.KeyPress += new KeyPressEventHandler(SayisalText_KeyPress);//olayi bagliyoruz..
}

void SayisalText_KeyPress(object sender KeyPressEventArgs e)
{
if (Char.IsDigit(e.KeyChar) != true)//eğer sayı değilse
e.Handled = true;//işlemi geçiştiriyor..
}
}
}


Bütün Zaman Ayarları WEZ +3.5 olarak düzenlenmiştir. şu Anki Saat: 08:35 AM .