文章分类 | 推荐文章 | 最新文章 | 热点文章 | 最新软件 | 精品软件 | 下载排行 | 推荐下载 | 免费看大片 | WPS | 杀毒软件
清风网络
首 页 软件下载 网络学院 数码学院
QQ 电脑入门 游戏 操作系统 图形处理 办公软件 媒体动画 精文荟萃 工具软件 网络编程 程序开发 网络技术 认证考试 网站建设 文章专栏
当前位置:清风网络学院程序开发C/C++C#编写的windows计算器-源代码
精品推荐
特别推荐
·C语言编程易犯毛病集合
·C语言编程常见问题解答(目录)
·C#程序开发中的常用函数汇总
·C/C++笔试、面试题目大汇总
·Beej的网络socket编程指南
·socket编程原理
·C语言的常用库函数使用方法分析及用途
·在C语言中如何处理时间和日期
·C++设计模式之Singleton
·VC++动态链接库编程之MFC扩展 DLL
·TCP/IP网络重复型服务器通信软件的设计
·DirectX游戏开发入门
·经典与现代的结合:在MFC中集成RAD .NET框架
·Windows API-GDI入门基础知识详解(2)
·Visual C++ 入门精解
·C#基础概念二十五问
·用C#实现pdf文件的完整性验证
·成为嵌入式程序员应知道的0x10个问题
·TCP/IP编程实现远程文件传输
·几个C#编程的小技巧
热点TOP10
·socket编程原理
·简易的四则运算
·C#程序开发中的常用函数汇总
·C#基础概念二十五问
·C宏--智者的利刃,愚者的恶梦
·C宏——智者的利刃,愚者的恶梦!
·Windows下C语言网络编程快速入门
·学生成绩管理系统实习
·C#代码与javaScript的相互调用
·Visual C++ 2008 Feature Pack下载
·C#中的预处理器指令
·C#实现窗口最小化到系统托盘
·C #中的几个线程同步对象方法
·C# 学习使用ErrorProvider
·减治法:C#实现插入排序实例
·用C#实现启动另一程序的方法
·无废话C#设计模式之九:Proxy
·无废话C#设计模式之七:Adapter
·无废话C#设计模式之五:Prototype
·C#编程中的 New 关键词的几种用法

C#编写的windows计算器-源代码

日期:2007年3月8日 作者: 查看:[大字体 中字体 小字体]


选择自 CSPRO 的 Blog
using System;
using System.Drawing;
using System.Windows;
using System.Windows.Forms;
using System.Collections;
using System.ComponentModel;
using System.Data;

namespace comput
{
    /// <summary>
    /// 这是一个计算器的简单实现。
    /// </summary>

    public class Form1 : System.Windows.Forms.Form
    {
        #region 控件声明
   
        private System.Windows.Forms.TextBox txtShow;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.Button btn_rev;
        private System.Windows.Forms.Button btn_dot;
        private System.Windows.Forms.Button btn_add;
        private System.Windows.Forms.Button btn_equ;
        private System.Windows.Forms.Button btn_sign;
        private System.Windows.Forms.Button btn_sub;
        private System.Windows.Forms.Button btn_mul;
        private System.Windows.Forms.Button btn_0;
        private System.Windows.Forms.Button btn_3;
        private System.Windows.Forms.Button btn_2;
        private System.Windows.Forms.Button btn_1;
        private System.Windows.Forms.Button btn_6;
        private System.Windows.Forms.Button btn_5;
        private System.Windows.Forms.Button btn_4;
        private System.Windows.Forms.Button btn_sqrt;
        private System.Windows.Forms.Button btn_div;
        private System.Windows.Forms.Button btn_7;
        private System.Windows.Forms.Button btn_8;
        private System.Windows.Forms.Button btn_9;
        private System.Windows.Forms.MainMenu mainMenu1;

[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] 下一页 




上一篇:可以使用多个jsp定制标签在JSP中达到接近servelt的处理效果

下一篇:aspjpeg组件高级使用方法介绍

C#编写的windows计算器-源代码 相关文章:
·Windows系统漏洞修复软件大比拼
·qq空间皮肤背景代码:QQ空间不用Q币更换主页皮肤方法
·XYNTService:Windows平台的开源管理工具
·Windows Vista震撼1600X1200高清壁纸
·如何让Windows桌面图标任我排
·免费领养QQ空间五级花最新技巧及代码放送
·QQ空间导航代码最新版使用方法
·Windows Vista Ultimate中文旗舰版下载+简单破解(支持迅雷HTTP & BT)
·Windows Vista 快捷方式箭头去除器 1.3
·鲜为人知的Windows XP优化
C#编写的windows计算器-源代码 相关软件:
·如何加固Windows XP 主机安全
·Windows Fonts Explorer V3.4 汉化版
·Windows主题70合一典藏版
·动态可更改文本代码!
·超功能计算器(Super Function Calculator) V5.10
·宇思计算器 V7.0
·实用计算器 V4.50
·微软官方Windows“冲击波”蠕虫删除工具 KB833330 简体中文版
·Windows蠕虫病毒专杀定制工具 V0.0.6
·Cheating-Death Windows Client V4.5.0

特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
[打印本页] [关闭窗口] 转载请注明来源:http://www.vipcn.net
| 帮助(?) | 版权声明 | 友情连接 | 关于我们 | 信息发布
Copyright 2007 www.vipcn.net All Rights Reserved. 鄂ICP备05000083号Powered by:viphot