登录
首页 » C# » C#初学者,多线程入门例子

C#初学者,多线程入门例子

于 2014-04-01 发布
0 110
下载积分: 1 下载次数: 0

代码说明:

C#初学者,多线程入门例子

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

发表评论

0 个回复

  • 微软c# 字符串通用类
    字符串截取/图片地址提取/ip地址检测。。。。
    2014-03-25下载
    积分:1
  • 手机QQ协议和web协议登录 完整源码下载
    可选择手机QQ协议或web协议两种方式登录,手机协议使用1.4版本。 经测试 可用
    2015-01-27下载
    积分:1
  • 关于datagridview控件的简单例子,更容易理解一些
    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 DataGridViewSample{ public partial class Form1 : Form { public static List Tests = new List(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.dataGridView1.DataSource = Tests; } private void button1_Click(object sender, EventArgs e) { frmAdd form = new frmAdd(null); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } private void button2_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows != null) { frmAdd form = new frmAdd(new Test( Convert.ToInt32(this.dataGridView1.SelectedRows[0].Cells[0].Value), Convert.ToDecimal(this.dataGridView1.SelectedRows[0].Cells[1].Value), Convert.ToDateTime(this.dataGridView1.SelectedRows[0].Cells[2].Value), this.dataGridView1.SelectedRows[0].Cells[3].Value.ToString())); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } } private void button3_Click(object sender, EventArgs e) { //使用前面示例中的代码,用DataGridView或者List来做导出都是可以的 } } public class Test { public Test(int id, decimal voltage, DateTime record, string remark) { ID = id; Voltage = voltage; Record = record; Remark = remark; } public int ID { get; set; } public decimal Voltage { get; set; } public DateTime Record { get; set; } public string Remark { get; set; } }}
    2015-06-11下载
    积分:1
  • listview 分页示例
    listview 分页示例
    2013-10-02下载
    积分:1
  • Cefsharp浏览器 V63 demo.zip
    Cefsharp浏览器使用过程中困扰到不少的新手,新集成的cefsharpV63版本供大家使用,支持MP4 MP3等,下载即可使用。 也可以单独引用到自己项目中,将下载下来的文件解压,然后binDebug下文件全部复制到自己程序binDebug目录。 项目右键"添加引用",找到: CefSharp.dll CefSharp.Core.dll CefSharp.WinForms.dll 添加引用到项目。
    2019-08-05下载
    积分:1
  • C#串口通讯
    串口通讯
    2021-05-06下载
    积分:1
  • ASP.NET微信公众平台源码(含数据库)
    ASP.NET微信公众平台源码(含数据库)
    2019-12-26下载
    积分:1
  • 简单工厂设计模式之计算器练习
    简单工厂设计模式之计算器练习
    2016-03-13下载
    积分:1
  • Environment示例源码
    Environment示例源码
    2014-04-14下载
    积分:1
  • winform 文件拖拽完整例子源码
    在WinForm实现一个类似资源浏览器的功能,需要实现将WinForm中列出的文件拖出到其他应用程序中或者从其他应用程序中将文件拖入到Winform应用中。网上有一些文章介绍这种功能,但都比较零散,缺少一个完整的例子。为此我编写了一个较完整的实现文件拖入和拖出的例子,并撰写此文一步步讲解如果实现类似功能。
    2013-07-19下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载