tgoop.com/CsharpWindowsForm/93
Create:
Last Update:
Last Update:
bool numbersOnly;
public MyTextBox()
{
numbersOnly = false;
}
public bool NumbersOnly
{
get { return this.numbersOnly; }
set { this.numbersOnly = value; }
}
protected override void OnKeyPress(KeyPressEventArgs e)
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar)&&NumbersOnly==true)
{
e.Handled = true;
}
base.OnKeyPress(e);
}
}
BY برمجة تطبيقات الويندوز C# Programming
Share with your friend now:
tgoop.com/CsharpWindowsForm/93