资源简介
以前在上传过的,但是有许多bug,所以修正了放多问题,功能方面+,-,*,/,都没有问题了,而且除0也没有问题的。界面和windows的稍差一些。
代码片段和文件信息
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 Cal
{
public partial class Form1 : Form
{
//全局变量
double a = 0;//保存结果
double b = 0;//保存中间变量
bool c = false;//设置文本控件中值
string d;//运算符的保存
bool f = false;//设置退格键的作用
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
/* //窗体大小不能更改(已直接在窗体属性里面更改)
MinimumSize = new Size(252 275);//窗口最小尺寸
MaximumSize = new Size(252 275);//窗口最大尺寸*/
//启动时窗体在屏幕中间
this.Left = (Screen.PrimaryScreen.WorkingArea.Width - 252) / 2;
this.Top = (Screen.PrimaryScreen.WorkingArea.Height - 275) / 2;
textBox1.Text = “0“;
c = true;
}
private void button1_Click(object sender EventArgs e)
{
if (c == true)//如果文件控件中没有值的话
{
textBox1.Text = ““;//初始化
c = false;//更改变量c
}
if (f == true)
{
textBox1.Text = ““;
f = false;
}
textBox1.Text += “1“;
}
private void button2_Click(object sender EventArgs e)
{
if (c == true)
{
textBox1.Text = ““;
c = false;
}
if (f == true)
{
textBox1.Text = ““;
f = false;
}
textBox1.Text += “2“;
}
private void button3_Click(object sender EventArgs e)
{
if (c == true)
{
textBox1.Text = ““;
c = false;
}
if (f == true)
{
textBox1.Text = ““;
f = false;
}
textBox1.Text += “3“;
}
private void button4_Click(object sender EventArgs e)
{
if (c == true)
{
textBox1.Text = ““;
c = false;
}
if (f == true)
{
textBox1.Text = ““;
f = false;
}
textBox1.Text += “4“;
}
private void button5_Click(object sender EventArgs e)
{
if (c == true)
{
textBox1.Text = ““;
c = false;
}
if (f == true)
{
textBox1.Text = ““;
f = false;
}
textBox1.Text += “5“;
}
private void button6_Click(object sender EventArgs e)
{
if (c == true)
{
t
相关资源
- C#计算器程序 VS2010实现
- C#计算器含源码
- 自己用C#写的计算器的源代码修改版
- C#利用事件委托实现窗体的传值做的计
- vs2010 C# 计算器仿 Windows 自带的计算器
- 基于asp.net的简易计算器
- C#实现计算器
- C#简易计算器.zip
- 进制转换计算器VSC#编写,工程
- c#开发,unity环境,计算器,支持四则
- unity3D简易计算器C#脚本代码
- C#小型窗体项目-BMI计算器
- 用C#语言编写计算器
- c# 写的模仿win7 计算器
- C#实现的学分绩点计算器的代码和可运
- C#简单计算器实现加减乘除
- WPF制作计算器
- 在线计算器asp.net做的
- C#实现的表达式解析型计算器
- 计算器与奇偶筛选
- 简单工厂设计模式之计算器练习
- C# 简易计算器源码
- C# 计算器 入门
- WinCE计算器 C#
- C# 简易计算器(入门级)12849
- 智能计算器DEMO(附数字转中文、大写
- 批量选择多张图片并显示图片尺寸和
- 电容充电计算器(源码)
- C# 微型计算器(实现了加减乘除)
- 计算器的C#实现
评论
共有 条评论