C#實(shí)現(xiàn)Winform版計(jì)算器
更新時(shí)間:2016年05月11日 16:13:29 投稿:lijiao
這篇文章主要為大家詳細(xì)介紹了C#實(shí)現(xiàn)Winform版計(jì)算器,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
本文實(shí)例為大家分享Winform版計(jì)算器的具體實(shí)現(xiàn)方法,供大家參考,具體內(nèi)容如下
前臺頁面設(shè)計(jì)

后臺代碼實(shí)現(xiàn)
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 計(jì)算器
{
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 = "";
}
}
}
以上就是本文的全部內(nèi)容,希望對大家學(xué)習(xí)C#程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:
相關(guān)文章
C#通過正則表達(dá)式實(shí)現(xiàn)提取網(wǎng)頁中的圖片
本文給大家分享的是使用C#通過正則表達(dá)式來實(shí)現(xiàn)提取網(wǎng)頁中的圖片的代碼,十分的方便,有需要的小伙伴可以參考下。2015-12-12
C#編程實(shí)現(xiàn)DataTable添加行的方法
這篇文章主要介紹了C#編程實(shí)現(xiàn)DataTable添加行的方法,結(jié)合兩個(gè)實(shí)例形式分析了C#操作DataTable實(shí)現(xiàn)動(dòng)態(tài)添加行的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-11-11
利用Distinct()內(nèi)置方法對List集合的去重問題詳解
這篇文章主要給大家介紹了關(guān)于利用Distinct()內(nèi)置方法對List集合的去重問題的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧2019-06-06
使用遞歸實(shí)現(xiàn)數(shù)組求和示例分享
這篇文章主要介紹了使用遞歸實(shí)現(xiàn)數(shù)組求和示例,思路是給定一個(gè)含有n個(gè)元素的整型數(shù)組a,求a中所有元素的和,需要的朋友可以參考下2014-03-03

