C#實(shí)現(xiàn)Winform版計(jì)算器
本文實(shí)例為大家分享Winform版計(jì)算器的具體實(shí)現(xiàn)方法,供大家參考,具體內(nèi)容如下
前臺(tái)頁(yè)面設(shè)計(jì)

后臺(tái)代碼實(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 = "";
}
}
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)C#程序設(shè)計(jì)有所幫助。
- C#計(jì)算器編寫代碼
- C#編寫的windows計(jì)算器的實(shí)例代碼
- C#開發(fā)簡(jiǎn)易winform計(jì)算器程序
- C#實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器功能完整實(shí)例
- C#實(shí)現(xiàn)簡(jiǎn)單計(jì)算器功能
- C#實(shí)現(xiàn)簡(jiǎn)單加減乘除計(jì)算器
- C#實(shí)現(xiàn)的簡(jiǎn)單整數(shù)四則運(yùn)算計(jì)算器功能示例
- c#入門之實(shí)現(xiàn)簡(jiǎn)易存款利息計(jì)算器示例
- C# WinForm程序設(shè)計(jì)簡(jiǎn)單計(jì)算器
- C#實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器小程序
相關(guān)文章
C#實(shí)現(xiàn)復(fù)制文件夾中文件到另一個(gè)文件夾的方法
這篇文章主要介紹了C#實(shí)現(xiàn)復(fù)制文件夾中文件到另一個(gè)文件夾的方法,實(shí)例分析了C#實(shí)現(xiàn)文件夾的查找、判斷及文件復(fù)制相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-07-07
c# winform 解決PictureBox 無法打印全部圖片的問題
這篇文章主要介紹了c# winform 解決PictureBox 無法打印全部圖片的問題,幫助大家更好進(jìn)行c# winform開發(fā),感興趣的朋友可以了解下2020-12-12
c# 用Dictionary實(shí)現(xiàn)日志數(shù)據(jù)批量插入
這篇文章主要介紹了c# 用Dictionary實(shí)現(xiàn)日志數(shù)據(jù)批量插入的步驟,幫助大家更好的理解和使用c#中的Dictionary類,感興趣的朋友可以了解下2021-02-02
WPF使用webView實(shí)現(xiàn)顯示瀏覽器網(wǎng)頁(yè)
在WPF中顯示一個(gè)可以操作的瀏覽器界面,你可以使用WebBrowser控件或WebView2控件,下面我們就來看看如何分別使用這兩個(gè)控件實(shí)現(xiàn)顯示瀏覽器網(wǎng)頁(yè)吧2025-01-01
C#實(shí)現(xiàn)自定義ListBox背景的示例詳解
這篇文章主要為大家詳細(xì)介紹了如何利用C#實(shí)現(xiàn)自定義ListBox背景,文中的示例代碼講解詳細(xì),對(duì)我們學(xué)習(xí)C#有一定的幫助,感興趣的小伙伴可以跟隨小編一起了解一下2022-12-12

