C#实现Winform版计算器

所属分类: 软件编程 / C#教程 阅读数: 63
收藏 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# SendInput 模拟鼠标操作的实现方法

C# SendInput 模拟鼠标操作的实现方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

C#中 paint()与Onpaint()的区别

paint是事件onpaint方法onpaint方法是调用paint事件的,用哪一个,效果是一样,就看那一个方便了内部是这样实现的:
收藏 0 赞 0 分享

c#中GetType()与Typeof()的区别

c#中GetType()与Typeof()的区别,需要的朋友可以参考一下
收藏 0 赞 0 分享

将字符串转换成System.Drawing.Color类型的方法

将字符串转换成System.Drawing.Color类型的方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

C# 抓取网页内容的方法

C# 抓取网页内容的方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

基于C#后台调用跨域MVC服务及带Cookie验证的实现

本篇文章介绍了,基于C#后台调用跨域MVC服务及带Cookie验证的实现。需要的朋友参考下
收藏 0 赞 0 分享

使用C#获取远程图片 Form用户名与密码Authorization认证的实现

本篇文章介绍了,使用C#获取远程图片 Form用户名与密码Authorization认证的实现。需要的朋友参考下
收藏 0 赞 0 分享

Winform跨线程操作的简单方法

线程间操作无效:从不是创建控件“label1”的线程访问它
收藏 0 赞 0 分享

C# WINFORM 强制让窗体获得焦点的方法代码

C# WINFORM 强制让窗体获得焦点的方法代码,需要的朋友可以参考一下
收藏 0 赞 0 分享

C#中方括号[]的语法及作用介绍

C#中方括号[]可用于数组,索引、属性,更重要的是用于外部DLL类库的引用。
收藏 0 赞 0 分享
查看更多