winform计算器练习

  临近年关,今日在学习的过程中感觉甚是无聊,便想用C#来开发一个简易的计算器程序,这里记录下今日下午的实现过程,同时也记录下自己的第一遍博客。

一,需求

  首先我们先来决定我们的计算器要实现什么功能

  功能需求:1、能够实现加、减、乘、除、求余等两个操作数的运算,以及开方、平方单个操作数的运算

       2、能够清除错误的输入,能够实现清零操作

  显示需求:能够显示操作数与运算内容,显示结果

二、设计界面

  1、在明白我们的功能需求后,我们来设计界面,界面主要包括三个部分,用于显示的两个textBox,以及数字键Button组,以及功能键Button组,对于具体的界面排列方法,以及Button的命名方式读者可根据自己的喜好来设置,在这里我实现的界面如图:

  2、控件命名,主要是命名控件的Name属性(表示控件的名字),以及Text属性(表示控件上的显示字体)

  对于显示区域命名为:textBox_top(显示运算过程),textBox_show(显示结果)

  对于功能区域命名为btn_name,name依次为(back,clear)表示清楚一位,和全部清零

  对于操作数区域命名为btn_name,name依次为(9,8,7,6,5,4,3,2,1,0,point,PI),表式10个数字、小数点和常数PI

  对于运算符区域命名为btn_name,name依次为(add,sub,mult,div,square,involution,remain,equal)表示加、减、乘、除、平方、开方、求余和等号

三、实现逻辑

  自己在没做这个计算器程序之前,觉得这个程序很简单,可是等做起来的时候发现不那么简单,特别是这个逻辑,感觉很是绕,这里也提醒能够看到本文的初学者一定不要眼高手低。其实这里的实现逻辑也并没有那么复杂:首先,这里的运算包括,两个操作数的运算,和一个操作数的运算,明白这个后,我们实现起来就容易多了。

  1、首先我们定义几个变量来存储操作数、运算符和结果,firstValue(第一个操作数), secondValue(第二个操作数), result(结果);operation,存储操作运算符。

  //定义操作数和结果
  string firstValue, secondValue, result;
  char operation;
  //存储上次点击了什么按钮,0代表什么都没点击,1代表了数字按钮
   private int lastButtonStatus = 0;

  2、此处为了方便我们将点击操作数的事件集中处理代码如下:

 1     private void btnVaL_Click(object sender, EventArgs e)
 2         {
 3             Button btn = (Button)sender;
 4             if (lastButtonStatus == 0 || textBox_show.Text == "0")
 5             {
 6                 textBox_show.Text = btn.Text;
 7             }
 8             else
 9             {
10                 textBox_show.Text += btn.Text;
11             }
12             lastButtonStatus = 1;
13         }
14         //将数字按钮的事件集中处理
15         private void Form1_Load(object sender, EventArgs e)
16         {
17             this.textBox_show.Text = "0";
18             this.textBox_top.Text = "0";
19             btn_0.Click += new EventHandler(btnVaL_Click);
20             btn_1.Click += new EventHandler(btnVaL_Click);
21             btn_2.Click += new EventHandler(btnVaL_Click);
22             btn_3.Click += new EventHandler(btnVaL_Click);
23             btn_4.Click += new EventHandler(btnVaL_Click);
24             btn_5.Click += new EventHandler(btnVaL_Click);
25             btn_6.Click += new EventHandler(btnVaL_Click);
26             btn_7.Click += new EventHandler(btnVaL_Click);
27             btn_8.Click += new EventHandler(btnVaL_Click);
28             btn_9.Click += new EventHandler(btnVaL_Click);
29             btn_point.Click += new EventHandler(btnVaL_Click);
30         } 

  对于此方法,private void Form1_Load(object sender, EventArgs e)我们在窗体设计界面上双击,即可自动生成此方法,我们在里面添加相应代码即可,注意是窗口而不是具体的控件。 

  3、对于两个操作数,我们以运算符是否按下后来划分两个操作数,当发生点击运算符(加、减、乘、除、求余)事件时,我们将输入框(textBox_show)中的数字存储在firstValue变量中,并将“+”运算符存储在operation变量中,同时清空textBox_show中的内容,并更新textBox_top中的内容,然后继续输入第二个操作数,当按下等号运算符时,将输入框中的数字存储在secondValue变量中,并根据operation中的运算符类型来计算。

  4、对于一个操作数的运算,在我们点击运算符(平方、开方)事件时,直接根据运算进行计算,代码如下:

 1         //加
 2         private void btn_add_Click(object sender, EventArgs e)
 3         {
 4             firstValue = textBox_show.Text;
 5             operation = ‘+‘;
 6             textBox_top.Text = firstValue + ‘+‘;
 7             textBox_show.Text = string.Empty;
 8         }
 9         //减
10         private void btn_sub_Click(object sender, EventArgs e)
11         {
12             firstValue = textBox_show.Text;
13             operation = ‘-‘;
14             textBox_top.Text = firstValue + ‘-‘;
15             textBox_show.Text = string.Empty;
16         }
17         //乘
18         private void btn_mult_Click(object sender, EventArgs e)
19         {
20             firstValue = textBox_show.Text;
21             operation = ‘*‘;
22             textBox_top.Text = firstValue + ‘*‘;
23             textBox_show.Text = string.Empty;
24         }
25         //除
26         private void btn_div_Click(object sender, EventArgs e)
27         {
28             firstValue = textBox_show.Text;
29             operation = ‘/‘;
30             textBox_top.Text = firstValue + ‘/‘;
31             textBox_show.Text = string.Empty;
32         }
33         //求余
34         private void btn_remain_Click(object sender, EventArgs e)
35         {
36             firstValue = textBox_show.Text;
37             operation = ‘%‘;
38             textBox_top.Text = firstValue + ‘%‘;
39             textBox_show.Text = string.Empty;
40         }
41         //求平方和
42         private void btn_square_Click(object sender, EventArgs e)
43         {
44             firstValue = textBox_show.Text;
45             textBox_top.Text = firstValue + "的平方是:";
46             double outFirst;
47             double.TryParse(firstValue, out outFirst);
48             textBox_show.Text = (outFirst * outFirst).ToString();
49         }
50         //求平方根
51         private void btn_involution_Click(object sender, EventArgs e)
52         {
53             firstValue = textBox_show.Text;
54             textBox_top.Text = firstValue + "的平方根是:";
55             double outFirst;
56             double.TryParse(firstValue, out outFirst);
57             textBox_show.Text = (Math.Sqrt(outFirst)).ToString();
58         }
59         //等号,处理加、减、乘、除、求余、运算
60         private void btn_equal_Click(object sender, EventArgs e)
61         {
62             secondValue = textBox_show.Text;
63             textBox_top.Text += secondValue + ‘=‘;
64             double outFirst, outSecond;
65             double.TryParse(firstValue, out outFirst);
66             double.TryParse(secondValue,out outSecond);
67             switch (operation)
68             {
69                 case ‘+‘:
70                     result = (outFirst + outSecond).ToString();
71                     break;
72                 case ‘-‘:
73                     result = (outFirst - outSecond).ToString();
74                     break;
75                 case ‘*‘:
76                     result = (outFirst * outSecond).ToString();
77                     break;
78                 case ‘/‘:
79                     if (outSecond != 0)
80                     {
81                         result = (outFirst / outSecond).ToString();
82                     }
83                     else
84                     {
85                         MessageBox.Show("被除数不能为0");
86                     }
87                     break;
88                 case ‘%‘:
89                     result = (outFirst % outSecond).ToString();
90                     break;
91             }
92             textBox_show.Text = result;
93         }

   5、对于退格功能和清零功能,比较容易实现,这里直接贴上代码

 1        //退格功能
 2         private void btn_back_Click(object sender, EventArgs e)
 3         {
 4             if (textBox_show.Text.Length > 0)
 5             {
 6                 textBox_show.Text = textBox_show.Text.Substring(0, textBox_show.Text.Length - 1);
 7             }
 8         }
 9         //清空
10         private void btn_clear_Click(object sender, EventArgs e)
11         {
12             textBox_top.Text = string.Empty;
13             textBox_show.Text = string.Empty;
14             firstValue = string.Empty;
15             secondValue = string.Empty;
16         }

四、实现结果   

这样我们就实现了一个简易的计算器器程序,赶快来运行以下来看看效果吧:

  最后放上全部的实现代码:CalculatorTest,同时也感谢各位大神批评指正

  

原文地址:https://www.cnblogs.com/warrenHome/p/8435326.html

时间: 2024-10-02 08:09:15

winform计算器练习的相关文章

Winform——计算器局部功能(+-*/%)

namespace 计算器2._0 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private bool Isok = true;//记录刚刚是否点过运算符,或是否第一次进入界面 private string Biaodashi; //记录运算符之前的表达式(在第一栏) private decimal Sum;//记录之前计算的结果(在第二栏) private string Pre

Winform——计算器(大部分功能)

namespace 计算器2._0 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private bool Isok = true;//记录刚刚是否点过运算符,或是否第一次进入界面 private string Biaodashi; //记录运算符之前的表达式(在第一栏) private decimal Sum;//记录之前计算的结果(在第二栏) private string Pre

Winform——计算器

namespace 计算器2._0 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private bool Isok = true;//记录刚刚是否点过运算符,或是否第一次进入界面(用来存储判断是否刚刚点过运算符) private string Biaodashi; //记录运算符之前的表达式(在第一栏) private decimal Sum;//记录之前计算的结果(在第二栏) p

winform 计算器

1 bool a; //判断上一次按键是加减乘除还是数字 2 string c = ""; //判断加减乘除操作 3 decimal f;//记录第一个值以及接收运算结果 4 /// <summary> 5 /// 数字按键 6 /// </summary> 7 /// <param name="sender"></param> 8 /// <param name="e"></pa

winform 计算器 两步走

namespace WindowsFormsApplication4 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } //记录是否刚点过运算符 private bool isok = true; //记录结果 private decimal Sum; //记录上一次的运算符 private string PreYunsuanfu; //记录表达式 private string Biao

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 FirstForm { public partial class JiSuanQi : Form { publi

Winform——计算器进制转换

namespace 进制转换2._0 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public string Shizhuaner(int a, int jinzhi) //十转二 { string jieguo = ""; while (true) { string s = (a % jinzhi).ToString(); //s的值为a%2后的数,因为进制是2. ji

1.C#WinForm基础制作简单计算器

利用c#语言编写简单计算器: 源码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace 简单计算器 { public partial class Form1 : Form { public For

[原][C#][winForm]分级基金折溢价WinForm网络计算器

分级基金折溢价WinForm网络计算器 通过子/母基金代码,从 [ 东方财富网,天天基金网,新浪 ] 抓取分级基金的子母基金数据(代码,名称,净值,价格), 并计算出子基金(A基金,B基金)以及母基金的溢价率与折价率, 便于投资/投机客从中套利. 数据通过网站获取,使用基金净值,非估值,一般晚间网站会更新当天基金净值,不可用于实时计算. ------ 效果图: ---- 代码: 1.窗体如效果图 2.常用变量与数据抓取代码: 1 namespace fundGetAndCal 2 { 3 pub