C#,winform - Spinning Wheel进度中断并间歇性恢复

时间:2012-03-16 06:43:39

标签: c# activity-indicator

在用户启动长时间运行的过程时显示旋转轮进度动画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);
        }
}

如何显示轮子的不间断连续显示,直到过程结束?

2 个答案:

答案 0 :(得分: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();

答案 1 :(得分:0)

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

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