您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何使用c#實現簡易的計算器功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1.首先新建一個windows窗體應用的項目。執行文件-新建-項目-windows窗體應用
2.在工具箱中拖出一個textbox用于輸入和顯示,再拖出21個button按鈕用來當計算器的按鍵,在textbox下面還有一個lable控件(我把它屬性改成了空格所以看不到了),改一下按鈕的text屬性
3.雙擊數字按鈕進入代碼界面(數字只用一個事件即可,運算符也是用一個事件,其他每個按鈕都需要雙擊添加事件)
4.代碼呢已經準備好了,只要雙擊按鈕進入代碼界面,然后對應著粘上就行了(注意所有數字都是用的一個事件,都有標注,可以選擇按鈕,然后單擊屬性里的事件(閃電圖標)查看click的事件)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 計算器 { public partial class Form3 : Form { public Form3() { InitializeComponent(); } //定義變量 char oper; double num1; double num2; double result = 0; double memory=0.0; private void Button9_Click(object sender, EventArgs e)//數字按鈕的功能實現 { Button a = (Button)sender;//判斷按下的是哪個按鈕 if (textBox1.Text == “0”) { textBox1.Text = a.Text; } else textBox1.Text += a.Text; }
private void Button16_Click(object sender, EventArgs e)//運算符按鈕的功能實現 { if (textBox1.Text != "") { num1 = double.Parse(textBox1.Text); oper = char.Parse(((Button)sender).Text); textBox1.Text = ""; } } private void Button15_Click(object sender, EventArgs e)//C按鈕的功能實現 { textBox1.Text = ""; textBox1.Focus(); num1 = 0; num2 = 0; oper = ' '; } private void Button14_Click(object sender, EventArgs e)//結果按鈕的功能實現 { if (textBox1.Text != "") { num2 = double.Parse(textBox1.Text); switch (oper) { case '+': result = num1 + num2; break; case '-': result = num1 - num2; break; case '*': result = num1 * num2; break; case '÷': result = num1 / num2; break; } textBox1.Text = result.ToString(); } } private void Button17_Click(object sender, EventArgs e)//小數點按鈕的功能實現 { if (textBox1.Text != "") { textBox1.Text += "."; } else { textBox1.Text = "0."; } } private void Button18_Click(object sender, EventArgs e)//M+按鈕的功能實現 { if(textBox1.Text!="") { label1.Text = "M"; memory += double.Parse(textBox1.Text); textBox1.Text = " "; } } private void Button20_Click(object sender, EventArgs e)//MR按鈕的功能實現 { textBox1.Text = memory.ToString(); } private void Button21_Click(object sender, EventArgs e)//MC按鈕的功能實現 { label1.Text = ""; memory = 0; } private void Button19_Click(object sender, EventArgs e)//M-按鈕的功能實現 { if (textBox1.Text != "") { label1.Text = "M"; memory -= double.Parse(textBox1.Text); textBox1.Text = " "; } } }
C#是一個簡單、通用、面向對象的編程語言,它由微軟Microsoft開發,繼承了C和C++強大功能,并且去掉了一些它們的復雜特性,C#綜合了VB簡單的可視化操作和C++的高運行效率,以其強大的操作能力、優雅的語法風格、創新的語言特性和便捷的面向組件編程從而成為.NET開發的首選語言,但它不適用于編寫時間急迫或性能非常高的代碼,因為C#缺乏性能極高的應用程序所需要的關鍵功能。
關于“如何使用c#實現簡易的計算器功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。