我收到错误消息“未处理格式异常。” 和“输入字符串的格式不正确。” 在这一行 temp_i = float.Parse(textBox3.Text); 问题是什么?
//button 2 calculate button
private void button1_Click(object sender, EventArgs e)
{
float temp_e;
float temp_i;
float temp_r;
float temp_p;
//*******************************************************
// Resistance = Volts / Current
//*******************************************************
if (IsNumeric(textBox1.Text) &&
IsNumeric(textBox2.Text) &&
textBox3.Text == (""))
{
temp_e = float.Parse(textBox1.Text); //convert string to number
temp_i = float.Parse(textBox3.Text); //convert string to number
temp_r = temp_e / temp_i; //display 1st result
textBox2.Text = Convert.ToString(temp_r); //post result resistance (R)
//calculate power
temp_p = temp_e * temp_i;
textBox5.Text = Convert.ToString(temp_p);
//display 2nd result
textBox4.Text = Convert.ToString(temp_r) + " * " + Convert.ToString(temp_i) + " = " + Convert.ToString(temp_p) + " watts";
}'