在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
*/
public static bool NumberDotTextbox_KeyPress( object sender, KeyPressEventArgs e)
{
//允许输入数字、小数点、删除键和负号
if ((e.KeyChar < 48 || e.KeyChar > 57) && e.KeyChar != 8 && e.KeyChar != ( char )( '.' ) && e.KeyChar != ( char )( '-' ))
{
return true ;
}
if (e.KeyChar == ( char )( '-' ))
{
if ((sender as TextBox).Text != "" )
{
return true ;
}
}
//小数点只能输入一次
if (e.KeyChar == ( char )( '.' ) && ((TextBox)sender).Text.IndexOf( '.' ) != -1)
{
return true ;
}
//第一位不能为小数点
if (e.KeyChar == ( char )( '.' ) && ((TextBox)sender).Text == "" )
{
return true ;
}
//第一位是0,第二位必须为小数点
if (e.KeyChar != ( char )( '.' ) && e.KeyChar != 8 && ((TextBox)sender).Text == "0" )
{
return true ;
}
//第一位是负号,第二位不能为小数点
if (((TextBox)sender).Text == "-" && e.KeyChar == ( char )( '.' ))
{
return true ;
}
return false ;
}
public static bool NumberTextbox_KeyPress(KeyPressEventArgs e)
{
if (e.KeyChar != '\b' ) //这是允许输入退格键
{
if ((e.KeyChar < '0' ) || (e.KeyChar > '9' )) //这是允许输入0-9数字
{
return true ;
}
}
return false ;
}
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论