第1个回答 2013-11-28
private void button1_Click(object sender, EventArgs e)
{
float Sum = 0;
Sum = float.Parse(textBox1.Text.ToString()) + float.Parse(textBox2.Text.ToString());
this.label4.Text = textBox1.Text + "+" + textBox2.Text + "=" + Sum.ToString();
}