1

在用户启动长时间运行的过程时显示旋转轮进度动画 gif。当我单击开始时,该过程开始并且同时轮开始旋转。

但问题是,车轮在中间撞击并恢复,这在长期过程中会发生多次。它应该是连续旋转的。我在同一个线程中同时运行任务和动画 gif(因为指示器只是一个动画图像而不是真正的进度值)。

使用的代码是,

        this.progressPictureBox.Visible = true;
        this.Refresh(); // this - an user controll
        this.progressPictureBox.Refresh();
        Application.DoEvents();
        OnStartCalibration(); // Starts long running process
        this.progressPictureBox.Visible = false;

   OnStartCalibration()
   {      

        int count = 6;  
        int sleepInterval = 5000;
        bool success = false;
        for (int i = 0; i < count; i++)
        {
            Application.DoEvents();
            m_keywordList.Clear();
            m_keywordList.Add("HeatCoolModeStatus");
            m_role.ReadValueForKeys(m_keywordList, null, null);
            l_currentValue = (int)m_role.GetValue("HeatCoolModeStatus");
            if (l_currentValue == 16)
            {
                success = true;
                break;
            }    
            System.Threading.Thread.Sleep(sleepInterval);
        }
}

如何在流程结束之前显示车轮的不间断连续显示?

4

2 回答 2

1

如果您使用框架 4,请将该OnStartCalibration(); // Starts long running process行替换为以下代码:

BackgroundWorker bgwLoading = new BackgroundWorker();
bgwLoading.DoWork += (sndr, evnt) =>
{
    int count = 6;  
    int sleepInterval = 5000;
    bool success = false;
    for (int i = 0; i < count; i++)
    {
        Application.DoEvents();
        m_keywordList.Clear();
        m_keywordList.Add("HeatCoolModeStatus");
        m_role.ReadValueForKeys(m_keywordList, null, null);
        l_currentValue = (int)m_role.GetValue("HeatCoolModeStatus");
        if (l_currentValue == 16)
        {
            success = true;
            break;
        }    
        System.Threading.Thread.Sleep(sleepInterval);
    }
};
bgwLoading.RunWorkerAsync();
于 2012-03-16T07:36:37.097 回答
0

您不能在同一线程上运行进度指示和任务。您应该使用BackgroundWorker

您的 GUI 线程将订阅 ProgressChanged 事件,并将收到任务更新的通知。从这里,您可以适当地更新进度指示。还有任务完成时的事件。

于 2012-03-16T06:51:11.827 回答