C#, .NET, начинающим и не только's Journal
 
[Most Recent Entries] [Calendar View] [Friends View]

Wednesday, April 6th, 2016

    Time Event
    12:21a
    Ввод только чисел в текстовое поле
    private void txtNumberField_KeyPress(object sender, KeyPressEventArgs e)
            {
                //ввод только цифр
                if (!(Char.IsDigit(e.KeyChar)))
                {
                    if (e.KeyChar != (char)Keys.Back)
                    {
                        e.Handled = true;
                    }
                }            
            }
    

    << Previous Day 2016/04/06
    [Calendar]
    Next Day >>

About LJ.Rossia.org