相关文章推荐
文武双全的刺猬  ·  ASP.NET ...·  1 年前    · 
活泼的大葱  ·  可以用在 VS Code ...·  1 年前    · 
privatevoidtextBox2_TextChanged(objectsender,EventArgse){Decimallength=Decimal.Parse(... private void textBox2_TextChanged(object sender, EventArgs e)
{
Decimal length =Decimal.Parse(textBox1.Text.Trim());
Decimal width = Decimal.Parse(textBox2.Text.Trim());
textBox3.Text = Convert.ToString(length*width);
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
}
我就是输入小数也是同样的错误