首页上一页 1 下一页尾页 1 条记录 1/1页
c#程序开发实例宝典Ex02_01例子不起作用
发表在C#图书答疑
2010-01-14
是否精华
是
否
版块置顶:
是
否
请教:为什么以下代码不起作用?我用的是vs2005开发版,C#,还要在哪个地方处理?
private void txtSum_KeyPress(object sender, KeyPressEventArgs e)
{
if ((e.KeyChar != 8 && !char.IsDigit(e.KeyChar))&&e.KeyChar!=13)
{
MessageBox.Show("商品数量只能输入数字","操作提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
e.Handled = true;
}
}
private void txtSum_KeyPress(object sender, KeyPressEventArgs e)
{
if ((e.KeyChar != 8 && !char.IsDigit(e.KeyChar))&&e.KeyChar!=13)
{
MessageBox.Show("商品数量只能输入数字","操作提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
e.Handled = true;
}
}