登录
首页 » C# » 视窗模拟计算器的发展可以,

视窗模拟计算器的发展可以,

于 2022-02-02 发布 文件大小:970.94 kB
0 35
下载积分: 2 下载次数: 1

代码说明:

模仿windows开发的计算器 可进行+、-、*、/、开方、求余等 界面漂亮-windows imitate the development of calculators can be ,-,*,/, prescribing, I seek such beautiful interface

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Jeu_de_la_vie
    Jeu de la vie exemple en C
    2011-04-09 04:52:31下载
    积分:1
  • CCP
    Vector基于CAN的标定协议原码及例程说明文档(vector ccp C code & document)
    2019-07-09 15:47:10下载
    积分:1
  • SerialPort
    基于VC实现的串口通信,可以实现串口的数据读取。(Based on the VC serial communications)
    2013-11-25 10:57:22下载
    积分:1
  • THREE_1D_FEM
    三个一维的matlab有限元程序,可以参考(Three one-dimensional finite element program matlab, you can refer to)
    2014-09-10 09:13:36下载
    积分:1
  • rx8025的linux驱动
    这是一个rx8025芯片在linux下的驱动程序源码,已通过测试可以使用,希望能帮到大家!!!!
    2022-09-02 20:40:02下载
    积分:1
  • MATLAB
    谱峰搜索传播算子DOA估计算法MATLAB程序(Spectrum peak search propagator DOA estimation algorithm based on MATLAB program)
    2014-10-23 18:12:35下载
    积分:1
  • ppp
    This is some code definitions the app EXE2C
    2016-01-16 08:33:21下载
    积分:1
  • EF Code First简介及一个入门级实例
    一、EF Code First简介 EntityFramework 代码优先   二、EF Code First第一个简单实例 1、开发环境及数据库说明 开发环境:Visual Studio 2010 Ultimate sp1 Sql Server 2008 R2 数据库:Northwind 2、实例代码结构 结构说明: App:控制台应用程序 Data:数据访问 Domain:实体类 3、安装Entity Framework   在Visual Studio编辑器中点击Tools -> Library Package Manager -> Package Manager Console,在Package Manager Console窗口中执行下面语句,安装最新版Entity Framework。 PM> Install-Package EntityFramework   App层和Data层分别添加对EntityFramework的引用:     在App层安装EntityFramework之后,将自动添加App.config和packages.config文件。   App.config配置Entity Framework版本信息及数据库连接信息,修改其中数据连接信息以适应本地实际环境。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15   packages.config现实当前项目使用的package: 1 2 3 4 4、实例代码 Domain中Category.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Northwind.Domain.Entities 7 { 8 public class Category 9 { 10 /// 11      /// 分类ID 12      /// 13 public int CategoryID { get; set; } 14 15 /// 16      /// 分类名称 17      /// 18 public string CategoryName { get; set; } 19 } 20 } Data中NorthwindContext.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.Data.Entity; 7 8 using Northwind.Domain.Entities; 9 10 namespace Northwind.Data 11 { 12 public class NorthwindContext : DbContext 13 { 14 public DbSet Categories { get; set; } 15 } 16 } App中Program.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using Northwind.Data; 7 using Northwind.Domain.Entities; 8 9 namespace Northwind.App 10 { 11 class Program 12 { 13 static void Main(string[] args) 14 { 15 Category c = new Category() { CategoryName = "电子数码" }; 16 17 using (NorthwindContext db = new NorthwindContext()) 18 { 19 db.Categories.Add(c); 20 db.SaveChanges(); 21 } 22 23 Console.WriteLine("Finish"); 24 Console.ReadKey(); 25 } 26 } 27 } 5、运行说明   由于在上面的数据库连接字符串中并未包含指定的数据库名称,运行成功之后,将在本地数据引擎中创建如下数据库和表:   数据库名称:Northwind.Data.NorthwindContext   表名称:Categories 6、示例代码附件
    2014-04-22下载
    积分:1
  • C# adsl 断网拨号例子源码(xp测试通过了)
    adsl断开/拨号例子 含完整源码下载,有截图
    2013-09-04下载
    积分:1
  • zcaI2C
    说明:  主从机同时软件模拟单总线(包括协议以及源代码)要求加精(owners from the plane while single bus simulation software (including the agreements and the source code) requested additional intensive!)
    2021-02-25 15:39:38下载
    积分:1
  • 696518资源总数
  • 104224会员总数
  • 54今日下载