乙個簡單的計算器的例子,在這個小程式中我們需要用到的元件有:
button:點選計算
textbox:輸出要運算的數
radiobutton:選擇運算型別
groupbox:繫結radiobutton
首程式設計客棧先我們在介面上拖以上的控制項,得到如下介面:
這時候監聽計算按鈕的點選事件:
private void button1_click(ob程式設計客棧ject sender, eventargs e)
op1 = double.parse(textbox1.text);//得到兩個框框的值並轉化為long型別
op2 = double.parse(textbox2.text);
if (radiobutton1.checked)
else if (radiobutton2.checked)
else if (radiobutton3.checked)
else
textbox3.t程式設計客棧ext = result程式設計客棧.tostring();//設定textbox3的值
}我們看一下測試的結果:
加法:
乘法:
好了,上面基本就是乙個簡單的計算器的例子了!
本文標題: c# winform程式設計簡單計算器
本文位址:
1 C WinForm基礎製作簡單計算器
利用c 語言編寫簡單計算器 核心知識點 messagebox.show convert.tostring combobox1.selectedindex 下拉序號 messagebox.show convert.tostring combobox1.selecteditem 下拉內容 message...
簡單計算器
unit unit1 inte ce uses windows,messages,sysutils,variants,classes,graphics,controls,forms,dialogs,stdctrls,buttons,math math是數 算單元 type tform1 class ...
簡單計算器
a 簡單計算器 crawling in process.crawling failed time limit 1000msmemory limit 32768kb64bit io format i64d i64u submit status description 讀入乙個只包含 的非負整數計算表示...