• 大小: 344.66 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 计算器  

资源简介

C#编的一个计算器,实现基本的功能。

资源截图

代码片段和文件信息

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 计算器
{
    public partial class Form1 : Form
    {
        double num1 num2result;
        string b;
        int i;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {

        }

        private void button1_Click(object sender EventArgs e)
        {
            if (textBox1.Text == “0“ || textBox1.Text == “除数不能为0“)
                textBox1.Text = ““;
            textBox1.Text += “1“;
        }

        private void textBox1_TextChanged(object sender EventArgs e)
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     460800  2009-04-24 11:28  计算器\Setup1\Debug\setup.exe

     文件     358400  2009-04-24 11:28  计算器\Setup1\Debug\Setup1.msi

     文件      29975  2009-04-24 11:28  计算器\Setup1\Setup1.vdproj

     文件      18432  2009-04-24 18:43  计算器\计算器\bin\Debug\计算器.exe

     文件      44544  2009-04-24 18:43  计算器\计算器\bin\Debug\计算器.pdb

     文件      14328  2009-04-24 18:38  计算器\计算器\bin\Debug\计算器.vshost.exe

     文件        490  2007-07-21 01:33  计算器\计算器\bin\Debug\计算器.vshost.exe.manifest

     文件       6330  2009-04-24 18:43  计算器\计算器\Form1.cs

     文件      16576  2009-04-24 18:43  计算器\计算器\Form1.Designer.cs

     文件       5814  2009-04-24 18:43  计算器\计算器\Form1.resx

     文件        660  2009-04-20 10:27  计算器\计算器\Form2.cs

     文件       3582  2009-04-20 10:27  计算器\计算器\Form2.Designer.cs

     文件       5814  2009-04-20 10:27  计算器\计算器\Form2.resx

     文件        675  2009-04-20 11:12  计算器\计算器\Form3.cs

     文件       3754  2009-04-20 10:51  计算器\计算器\Form3.Designer.cs

     文件       5814  2009-04-20 10:51  计算器\计算器\Form3.resx

     文件        616  2009-04-24 18:38  计算器\计算器\obj\Debug\计算器.csproj.FileListAbsolute.txt

     文件        963  2009-04-24 18:43  计算器\计算器\obj\Debug\计算器.csproj.GenerateResource.Cache

     文件      18432  2009-04-24 18:43  计算器\计算器\obj\Debug\计算器.exe

     文件        180  2009-04-24 18:43  计算器\计算器\obj\Debug\计算器.Form1.resources

     文件        180  2009-04-20 10:35  计算器\计算器\obj\Debug\计算器.Form2.resources

     文件        180  2009-04-20 10:51  计算器\计算器\obj\Debug\计算器.Form3.resources

     文件      44544  2009-04-24 18:43  计算器\计算器\obj\Debug\计算器.pdb

     文件        180  2009-04-20 10:35  计算器\计算器\obj\Debug\计算器.Properties.Resources.resources

     文件        580  2009-04-22 12:57  计算器\计算器\Program.cs

     文件       1368  2009-04-19 15:05  计算器\计算器\Properties\AssemblyInfo.cs

     文件       2868  2009-04-19 15:05  计算器\计算器\Properties\Resources.Designer.cs

     文件       5612  2009-04-19 15:05  计算器\计算器\Properties\Resources.resx

     文件       1094  2009-04-19 15:05  计算器\计算器\Properties\Settings.Designer.cs

     文件        249  2009-04-19 15:05  计算器\计算器\Properties\Settings.settings

............此处省略17个文件信息

评论

共有 条评论