C#
文章平均质量分 75
易小川_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.Threading.Tasks;using System.W原创 2013-04-21 15:20:29 · 1156 阅读 · 0 评论 -
Wpf WndProc 消息处理
public MainWindow() { InitializeComponent(); this.SourceInitialized += new EventHandler(WSInitialized); }void WSInitialized(object sender, EventArgs e)原创 2013-04-26 15:20:16 · 2349 阅读 · 0 评论 -
Invoke和BeginInvoke的使用
在Invoke或者BeginInvoke的使用中无一例外地使用了委托Delegate。 一、为什么Control类提供了Invoke和BeginInvoke机制?关于这个问题的最主要的原因已经是dotnet程序员众所周知的,我在此费点笔墨再次记录到自己的日志,以便日后提醒一下自己。1、windows程序消息机制Windows GUI程序是基于消息机制的,有个主线转载 2014-02-26 09:50:15 · 1066 阅读 · 1 评论
分享