private void textBox1_TextChanged(object sender, System.EventArgs e)
{
bool b=true;
for(int i=0;i<this.textBox1.Text.Length;i++)
{
if(!char.IsNumber(this.textBox1.Text[i]))
{
this.label1.Text="文本框中有字符";
//this.textBox1.Text=this.textBox1.Text.Remove(i,1);
b=false;
break;
}
}
if(b)
{
int i=int.Parse(this.textBox1.Text);
if(i>500)
{
this.label1.Text="已经超过500";
//this.textBox1.Text=this.textBox1.Text.Remove(2,1);
}
}
if(this.textBox1.Text.Length>3)
{
this.label1.Text="不能超过3位";
//this.textBox1.Text=this.textBox1.Text.Remove(2,1);
}
}