PDA

Orijinalini görmek için tıklayınız : Sayısal TextBox Oluşturma


McDroPp
17. May 2008, 03:44 AM
/*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..
}
}
}