C#实现Winform版计算器

所属分类: 软件编程 / C#教程 阅读数: 72
收藏 0 赞 0 分享

本文实例为大家分享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#程序设计有所帮助。

更多精彩内容其他人还在看

C#抽象类与抽象方法详解

这篇文章主要为大家详细介绍了C#抽象类与抽象方法的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

C#代码实现扑克牌排序的几种方式

今天小编就为大家分享一篇关于C#代码实现扑克牌排序,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

C#泛型概念的简介与泛型的使用

今天小编就为大家分享一篇关于C#泛型概念的简介与泛型的使用,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

C# 7.0 使用下划线忽略使用的变量的原因分析

这篇文章主要介绍了C# 7.0 使用下划线忽略使用的变量的原因浅析,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

C# 中使用正则表达式匹配字符的含义

正则表达式的作用用来描述字符串的特征。本文重点给大家介绍C# 中使用正则表达式匹配字符的含义,非常不错,具有一定的参考借鉴价值,需要的朋友参考下吧
收藏 0 赞 0 分享

C# Dictionary和SortedDictionary的简介

今天小编就为大家分享一篇关于C# Dictionary和SortedDictionary的简介,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

C#中SQL Command的基本用法

今天小编就为大家分享一篇关于C#中SQL Command的基本用法,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

C#使用SQL DataReader访问数据的优点和实例

今天小编就为大家分享一篇关于C#使用SQL DataReader访问数据的优点和实例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

C#使用SQL Dataset数据集代码实例

今天小编就为大家分享一篇关于的文章,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

C#使用SQL DataAdapter数据适配代码实例

今天小编就为大家分享一篇关于C#使用SQL DataAdapter数据适配代码实例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享
查看更多