TextBox Sadece Sayı Girişi Yap - CSharp


TextBox nesnesine sadece sayı girişi yapacak şekilde sınırlandıran C# kodu alternatifidir.

Kod


private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
    e.Handled = !char.IsDigit(e.KeyChar) && !char.IsControl(e.KeyChar); 
}

Etiketler
csharp csharp textbox csharp windows forms