特别谢谢jockey为我找的代码
我会很用心的去学的
我一定要把我的运算器做出来
当然这中间是少不了你们的支持的
还望你们多多给予指教哦
呵呵!真的很谢谢你们!
你怎么不看我给你写的啊~!伤心!
private void textBox3_TextChanged(object sender, EventArgs e)
{
int shu = 0;
for (int i = 0; i < textBox3.Text.Length; i++)
{
if ((textBox3.Text[i] < '0' || textBox3.Text[i] > '9') && textBox3.Text[i] != '.')
{
MessageBox.Show("只能输入数字!");
textBox3.Text ="";
}
if(textBox3.Text[i]=='.')
{
shu++;
if (shu > 1)
{
MessageBox.Show("注意输入的是否正确!");
textBox3.Text = "";
}
}
}
}
你怎么不看我给你写的啊~!伤心!
private void textBox3_TextChanged(object sender, EventArgs e)
{
int shu = 0;
for (int i = 0; i < textBox3.Text.Length; i++)
{
if ((textBox3.Text[i] < '0' || textBox3.Text[i] > '9') && textBox3.Text[i] != '.')
{
MessageBox.Show("只能输入数字!");
textBox3.Text ="";
}
if(textBox3.Text[i]=='.')
{
shu++;
if (shu > 1)
{
MessageBox.Show("注意输入的是否正确!");
textBox3.Text = "";
}
}
}
}
怎么会不看呢?
你们的代码都很值得我慢慢的学习,
所以也很谢谢你拉!
我会努力的,我一定要把它做出来的拉.