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..
}
}
}
__________________
بِسْــــــــــــــــــــــمِ اﷲِارَّحْمَنِ ارَّحِيم
-------------------------------------------------
Bu Soysuzlar Bu Vatansızlar Sarsada Yurdumu Ben Yaratan'dan Alırım Asil Kanı ve Gücü. -------------------------------------------------
|