一个简单的计算器的例子,在这个小程序中我们需要用到的组件有:
button:点击计算
textbox:输出要运算的数
radiobutton:选择运算类型
groupbox:绑定radiobutton
首先我们在界面上拖以上的控件,得到如下界面:
这时候监听计算按钮的点击事件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
private void button1_click( object sender, eventargs e) { double op1, op2, result; if (textbox1.text == "" ||textbox2.text== "" ) { //判断是否两个框框都输入了数据 messagebox.show( this , "输入错误" , "msg" ,messageboxbuttons.ok, messageboxicon.information); //有空余项没输入数据弹出提示框 return ; } op1 = double .parse(textbox1.text); //得到两个框框的值并转化为long类型 op2 = double .parse(textbox2.text); if (radiobutton1. checked ) { //加法 result = op1 + op2; } else if (radiobutton2. checked ){ //减法 result = op1 - op2; } else if (radiobutton3. checked ){ //乘法 result = op1 * op2; } else { //除法 result = op1 / op2; } textbox3.text = result.tostring(); //设置textbox3的值 } |
我们看一下测试的结果:
加法:
乘法:
好了,上面基本就是一个简单的计算器的例子了!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/zjq_1314520/article/details/53987625