c#简易计算器源代码!
{
if (textBox1.Text == "0" || flag == 1)
{
textBox1.Text = "5"; flag = 0;
}
else
{ textBox1.Text = textBox1.Text + "5"; }
button16.Focus();
}
private void button6_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0" || flag == 1)
{
textBox1.Text = "6"; flag = 0;
}
else
{ textBox1.Text = textBox1.Text + "6"; }
button16.Focus();
}
private void button7_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0" || flag == 1)
{
textBox1.Text = "7"; flag = 0;
}
else
{ textBox1.Text = textBox1.Text + "7"; }
button16.Focus();
}
private void button8_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0" || flag == 1)
{
textBox1.Text = "8"; flag = 0;
}
else
{ textBox1.Text = textBox1.Text + "8"; }
button16.Focus();
}