好用的Background Worker
.NET 提供background worker 讓使用者可以很簡單的使用另一條執行緒背景執行程式 (好像是用thread pool實作的)
我就用它來處理我專題的問題
用它來背景接收遠端來的ndb cluster event log 並加入 list box
我就用它來處理我專題的問題
用它來背景接收遠端來的ndb cluster event log 並加入 list box
using System.ComponentModel;
BackgroundWorker backgroundWorker1;
badkgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
private void backgroundWorker1_DoWork(Object sender,DoWorkEventArgs e)
{
//你要背景執行的CODE
}
留言
張貼留言