欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

C#实现Winform版计算器

时间:2022-02-17 09:30:02|栏目:.NET代码|点击:

本文实例为大家分享Winform版计算器的具体实现方法,供大家参考,具体内容如下

前台页面设计

后台代码实现

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;


namespace 计算器
{
  public partial class Form1 : Form
  {
    double c, d;
    string m;
    public Form1()
    {
      InitializeComponent();
    }




    private void button2_Click(object sender, EventArgs e)
    {


    }


    private void button8_Click(object sender, EventArgs e)
    {
      textBox1.Text += button8.Text;
    }


    private void button1_Click(object sender, EventArgs e)
    {
      textBox1.Text += button1.Text;
    }


    private void button2_Click_1(object sender, EventArgs e)
    {
      textBox1.Text += button2.Text;


    }


    private void button3_Click(object sender, EventArgs e)
    {
      textBox1.Text += button3.Text;
    }


    private void button4_Click(object sender, EventArgs e)
    {
      textBox1.Text += button4.Text;
    }


    private void button5_Click(object sender, EventArgs e)
    {
      textBox1.Text += button5.Text;
    }


    private void button6_Click(object sender, EventArgs e)
    {
      textBox1.Text += button6.Text;
    }


    private void button7_Click(object sender, EventArgs e)
    {
      textBox1.Text += button7.Text;


    }


    private void button9_Click(object sender, EventArgs e)
    {
      textBox1.Text += button9.Text;
    }


    private void button10_Click(object sender, EventArgs e)
    {
      textBox1.Text += button10.Text;
    }


    private void button15_Click(object sender, EventArgs e)
    {
      d= Convert.ToDouble(textBox1.Text);
      switch (m)
      { 
        case("+"):
          textBox1.Text = Convert.ToString(c+d);
          break;
        case ("-"):
          textBox1.Text = Convert.ToString(c-d);
          break;
        case ("*"):
          textBox1.Text = Convert.ToString(c * d);
          break;
        case ("/"):
          textBox1.Text = Convert.ToString(c/d);
          break;


      }
    }


    private void button11_Click(object sender, EventArgs e)
    {
      c = Convert.ToDouble(textBox1.Text);
      textBox1.Text = "";
      m = button11.Text;
    }


    private void button12_Click(object sender, EventArgs e)
    {
      c = Convert.ToDouble(textBox1.Text);
      textBox1.Text = "";
      m = button12.Text;
    }


    private void button13_Click(object sender, EventArgs e)
    {
      c= Convert.ToDouble(textBox1.Text);
      textBox1.Text = "";
      m = button13.Text;
    }


    private void button14_Click(object sender, EventArgs e)
    {
      c = Convert.ToDouble(textBox1.Text);
      textBox1.Text = "";
      m = button14.Text;
    }


    private void button16_Click(object sender, EventArgs e)
    {
      textBox1.Text = "";
    }
  }
}

以上就是本文的全部内容,希望对大家学习C#程序设计有所帮助。

上一篇:ASP.NET MVC4入门教程(七):给电影表和模型添加新字段

栏    目:.NET代码

下一篇:c#隐藏基类方法的作用

本文标题:C#实现Winform版计算器

本文地址:http://www.codeinn.net/misctech/193710.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有