资源简介
于国防《C#语言Windows程序设计》(第二版)最新版,所有官方资源。课程实例源码+实验源码+同步PPT。不需要解压密码,直接解压即可。方便大家学习与参考。
代码片段和文件信息
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 MyTimer
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
button1.Text = “启动“;
button2.Text = “复位“;
textBox1.Text = “0:00“;
timer1.Interval = 10; //精确到0.01秒
}
int ms = 0;
int s = 0;
private void timer1_Tick(object sender EventArgs e)
{
ms += 1;
if (ms == 100)
{
s += 1;
ms = 0;
}
textBox1.Text = s.ToString() + “:“ + ms.ToString(“d2“);
}
private void button1_Click(object sender EventArgs e)
{
if (timer1.Enabled)
{
timer1.Enabled = false;
button1.Text = “启动“;
}
else
{
timer1.Enabled = true;
button1.Text = “停止“;
}
}
private void button2_Click(object sender EventArgs e)
{
textBox1.Text = “0:00“;
ms = 0;
s = 0;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9728 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\bin\Debug\MouseDrawline.exe
文件 26112 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\bin\Debug\MouseDrawline.pdb
文件 22472 2014-10-05 18:33 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\bin\Debug\MouseDrawline.vshost.exe
文件 490 2013-03-18 17:00 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\bin\Debug\MouseDrawline.vshost.exe.manifest
文件 1955 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Form1.cs
文件 3321 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Form1.Designer.cs
文件 5817 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Form1.resx
文件 3739 2014-10-05 15:38 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\MouseDrawline.csproj
文件 6830 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 922 2014-10-05 18:33 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.csproj.FileListAbsolute.txt
文件 975 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.csproj.GenerateResource.Cache
文件 2143 2014-10-05 15:38 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.csprojResolveAssemblyReference.cache
文件 9728 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.exe
文件 180 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.Form1.resources
文件 26112 2014-10-05 15:42 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.pdb
文件 180 2014-10-05 15:38 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\obj\Debug\MouseDrawline.Properties.Resources.resources
文件 494 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Program.cs
文件 1346 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Properties\AssemblyInfo.cs
文件 2878 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Properties\Resources.Designer.cs
文件 5612 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Properties\Resources.resx
文件 1100 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Properties\Settings.Designer.cs
文件 249 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline\Properties\Settings.settings
文件 929 2014-10-05 15:36 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline.sln
..A..H. 26624 2014-10-05 18:33 C#语言Windows程序设计(第二版)_示例源码\Chpt10\MouseDrawline\MouseDrawline.v11.suo
文件 34304 2014-08-12 10:17 C#语言Windows程序设计(第二版)_示例源码\Chpt11\WindowsPrintComponents\WindowsPrintComponents\bin\Debug\WindowsPrintComponents.exe
文件 34304 2014-08-12 10:17 C#语言Windows程序设计(第二版)_示例源码\Chpt11\WindowsPrintComponents\WindowsPrintComponents\bin\Debug\WindowsPrintComponents.pdb
文件 22472 2014-08-12 10:40 C#语言Windows程序设计(第二版)_示例源码\Chpt11\WindowsPrintComponents\WindowsPrintComponents\bin\Debug\WindowsPrintComponents.vshost.exe
文件 490 2009-08-31 00:40 C#语言Windows程序设计(第二版)_示例源码\Chpt11\WindowsPrintComponents\WindowsPrintComponents\bin\Debug\WindowsPrintComponents.vshost.exe.manifest
文件 34304 2014-08-12 10:54 C#语言Windows程序设计(第二版)_示例源码\Chpt11\WindowsPrintComponents\WindowsPrintComponents\bin\Release\WindowsPrintComponents.exe
文件 32256 2014-08-12 10:54 C#语言Windows程序设计(第二版)_示例源码\Chpt11\WindowsPrintComponents\WindowsPrintComponents\bin\Release\WindowsPrintComponents.pdb
............此处省略1439个文件信息
- 上一篇:ASP.NET MVC4 Froms身份验证()
- 下一篇:c# 录屏软件
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论