c#做的简易计算器

时间:2016-01-03 11:17:43
【文件属性】:
文件名称:c#做的简易计算器
文件大小:46KB
文件格式:ZIP
更新时间:2016-01-03 11:17:43
c# 计算器的基本操作都有,自己课下联系做的 部分代码: private void button11_Click(object sender, EventArgs e) { text1.Text = text1.Text + "0"; } private void button1_Click(object sender, EventArgs e) { text1.Text = text1.Text + "1"; } private void button2_Click(object sender, EventArgs e) { text1.Text = text1.Text + "2"; } private void button3_Click(object sender, EventArgs e) { text1.Text = text1.Text + "3"; } private void button4_Click(object sender, EventArgs e) { text1.Text = text1.Text + "4"; } private void button5_Click(object sender, EventArgs e) { text1.Text = text1.Text + "5"; } private void button6_Click(object sender, EventArgs e) { text1.Text = text1.Text + "6"; } private void button7_Click(object sender, EventArgs e) { text1.Text = text1.Text + "7"; } private void button8_Click(object sender, EventArgs e) { text1.Text = text1.Text + "8"; } private void button9_Click(object sender, EventArgs e) { text1.Text = text1.Text + "9"; }
【文件预览】:
简易计算器
----简易计算器.sln(935B)
----简易计算器.suo(16KB)
----简易计算器()
--------Form1.Designer.cs(12KB)
--------Program.cs(496B)
--------obj()
--------bin()
--------Form1.cs(3KB)
--------简易计算器.csproj(4KB)
--------Form1.resx(6KB)
--------Properties()

网友评论

  • 不错噢 很有帮助 非常感谢
  • 不错,我采用了
  • 不错,功能基本实现,谢谢