I want to disable special character from text box in winforms (specially + and - symbol). I do have idea of e.Handled, but I can't use it as I am using some components which only exposes KeyAscii property to me.
public sealed class KeyPressEventArgs
: System.EventArgs
{
public int KeyAscii = 0;
public KeyPressEventArgs(int KeyAscii): base()
{
this.KeyAscii = KeyAscii;
}
}