线程在for循环中休眠

时间:2009-02-03 08:41:33

标签: c# .net winforms multithreading

我需要你帮助才能使用这种方法:

for (int i =0; i<dt.count; i++)
{
    process...
    sleep(3000);
}

int sleeptime=0;
private void timer2_Tick(object sender, EventArgs e)
{
    for (int i = 0; i &#60; mylist.Items.Count;)
    {
        listBox1.Items.Add(mylist.Items[i].Name.ToString() + "starting...");
        sleeptime = int.Parse(mylist.Items[i++].TimeSpan.ToString()) - timer2.Interval;
        System.Threading.Thread.Sleep(sleeptime);
    }
    timer1.Start();
    timer2.Stop();
}

但我不认为我的数据流如瀑布。

2 个答案:

答案 0 :(得分:13)

您正在阻止UI线程 - 在您离开事件处理程序之前,通常不会显示任何更新。一个hacky方法是使用Application.DoEvents(),但这是懒惰的,如果你正在暂停,则可能会重新入侵,尤其是

更好的方法是在后台线程上完成工作,并使用Invoke将数据推送到UI(不要与工作线程中的UI通信)。

或者只是在单独的刻度中添加单个项目?

以下是使用BackgroundWorker进行工作的示例,使用ReportProgress将项目推送到用户界面:

using System.ComponentModel;
using System.Threading;
using System.Windows.Forms;
static class Program
{
    static void Main()
    {
        // setup some form state
        Form form = new Form();
        ListView list = new ListView();
        list.View = View.List;
        BackgroundWorker worker = new BackgroundWorker();
        worker.WorkerReportsProgress = true;
        form.Controls.Add(list);
        list.Dock = DockStyle.Fill;
        // start the worker when the form loads
        form.Load += delegate {
            worker.RunWorkerAsync();
        };
        worker.DoWork += delegate
        {
            // this code happens on a background thread, so doesn't
            // block the UI while running - but shouldn't talk
            // directly to any controls
            for(int i = 0 ; i < 500 ; i++) {
                worker.ReportProgress(0, "Item " + i);
                Thread.Sleep(150);
            }
        };
        worker.ProgressChanged += delegate(object sender,
           ProgressChangedEventArgs args)
        {
            // this is invoked on the UI thread when we
            // call "ReportProgress" - allowing us to talk
            // to controls; we've passed the new info in
            // args.UserState
            list.Items.Add((string)args.UserState);
        };
        Application.Run(form);
    }
}

答案 1 :(得分:0)

或者您可以使用System.Threading.Timer类。计时器的回调是在ThreadPool的线程上执行的,而不是UI线程。但是,您无法直接访问任何GUI控件,因此您必须使用Invoke。