标签:obj rgs git box handle end odi enc send
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
byte[] array = System.Text.Encoding.Default.GetBytes(e.KeyChar.ToString());
if (!char.IsDigit(e.KeyChar)|| array.LongLength==2) e.Handled = true;
//‘\b‘是退格键值
if (e.KeyChar == ‘\b‘ || e.KeyChar == ‘.‘) e.Handled = false;
}
标签:obj rgs git box handle end odi enc send
原文地址:http://www.cnblogs.com/guxia/p/7151151.html