07 2010 档案
一个C#多线程的工作队列
摘要:自己写了一个多线程的工作队列,能够实现对队列中对象的自动处理。多线程添加元素到队列中,队列根据绑定的事件进行自动处理,可以设置WorkSequential属性来实现对队列处理的单线程(严格顺序处理)或者多线程处理(循序出队,但是多线程处理,不保证对队列元素的处理顺利)的选择。源码:代码示例代码:代码 阅读全文
posted @ 2010-07-09 20:11 wota 阅读(25679) 评论(5) 推荐(4)
winform 数据绑定 对象的属性,后台异步更新此对象的属性产生异常
摘要:When one is trying to use the MVC model on the WinForms, it is possible to use the INotifyPropertyChanged interface to allow DataBinding between the controler and form.It is then possible to write a c... 阅读全文
posted @ 2010-07-06 22:03 wota 阅读(986) 评论(0) 推荐(0)