随笔分类 - 多线程
摘要:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Threading;namespaceConsoleApplication1{classProgram{staticAutoResetEventgreenLight=newAutoResetEvent(false);staticAutoResetEventredLight=newAutoResetEvent(false);staticvoidMain(strin
阅读全文
摘要:源码下载我们在主窗口中要执行5个操作,而且每个操作都需要花上10秒钟,若是不做任何处理,则当我们处理这5个任务的时候,你点了界面,界面产马就会龙掉,直到完成。现在我们为了提高用户体验,在做5个任务的时候,弹出一个Dialog框告诉用户现在在做什么任务,这样用户体验就好了许多。如下图所示:若是有写的不当之处或问题,提出来,我们互相学习。
阅读全文
摘要:1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using System.Threading; 6: 7: namespace CatVSMice_ForManyWar...
阅读全文
摘要:1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using System.Threading; 6: 7: namespace CatVSMice 8: { ...
阅读全文