c#ProgressBar问题

时间:2009-12-22 13:30:03

标签: c# progress-bar

我一直在寻找一种创建漂亮进度条的方法。 我找到了一些我用过的代码,如果我使用了循环,它的效果很好。但现在我想在一个真正体面的应用程序中使用它,它给了我很多麻烦。我有一个应用程序,我在IMDB上查找数据,所以我连接到IMDB例如500 movietitles,所以这需要一段时间。所以我想展示一个进度条,其中每个电影的条形图都会增长,并且在movietitle上有一些额外的信息。

我使用以下类:

public partial class ProgressDialog : Window, IProgressContext
{
    public ProgressDialog()
    {
        InitializeComponent();
        IconBitmapDecoder ibd = new IconBitmapDecoder(
        new Uri("IMDB.ML.ico", UriKind.RelativeOrAbsolute),
        BitmapCreateOptions.None, BitmapCacheOption.Default);
        this.Icon = ibd.Frames[0];
    }
    public void UpdateProgress(double progress)
    {
        Dispatcher.BeginInvoke(DispatcherPriority.Background,
            (SendOrPostCallback)delegate { Progress.SetValue(ProgressBar.ValueProperty, progress); }, null);
    }

    public void UpdateStatus(string status)
    {
        Dispatcher.BeginInvoke(DispatcherPriority.Background,
            (SendOrPostCallback)delegate { StatusText.SetValue(TextBlock.TextProperty, status); }, null);
    }

    public void Finish()
    {
        Dispatcher.BeginInvoke(DispatcherPriority.Background,
            (SendOrPostCallback)delegate { Close(); }, null);
    }
}

public interface IProgressContext
{
    void UpdateProgress(double progress);
    void UpdateStatus(string status);
    void Finish();
}

这是使用进度条的imdb查找方法,此方法使用已存在的xml列表,因此它仅用于更新数据,而不是添加新电影:

public static void updateIMDBinfo()
    {

        //initialize progressbar
        ProgressDialog myProgressContext = new ProgressDialog();
        myProgressContext.Show();            

        //load old list
        List<Movie> movieList = XML.getMovieList();

        //create new updated list
        List<Movie> newMovieList = new List<Movie>();
        int count = 1;
        foreach (Movie movie in movieList)
        {
            //update progressbar
            myProgressContext.UpdateProgress((double)count / (double)movieList.Count);
            myProgressContext.UpdateStatus(String.Format("Updating movie: '{0}' ({1}/{2})", movie.Title, count, movieList.Count));

            movie.Link = movie.Link.Substring(movie.Link.IndexOf("http://www.imdb.com/title/") + 26, 9);

            //this creates a new movie where it looks up the data from imdb
            newMovieList.Add(new Movie(movie.Title, movie.Link, movie.Path));

            count++;
        }

        //sort the list
        newMovieList.Sort((Movie m1, Movie m2) => m1.Title.CompareTo(m2.Title));

        //save as xml
        XML.updateMovieList(newMovieList);

        //finish progressbar
        myProgressContext.Finish();
    }

所以现在当我使用该方法时,它会打开进度条,但是条形图永远不会填充,它只是不断添加电影到列表中并查找更新的信息而不填充条形图。我认为通过在不同的威胁中使用它可以解决这个问题吗?

有什么想法吗?

非常感谢

编辑:

我尝试使用BackgroundWorker。我在我的方法中添加了一个后台工作程序并返回一个ReportProgress。我还在我的主类中添加了一个backgroundWorker,它使用了带有eventhandler的方法。然而,它没有奏效。我不太熟悉不同的威胁。那我该怎么办呢? 我在这里尝试过:

  

http://msdn.microsoft.com/en-us/library/cc221403(VS.95).aspx

2 个答案:

答案 0 :(得分:7)

由于您与UI位于同一个线程中,因此进度条不会刷新,实际上整个窗口不会刷新,因为您的操作会阻止主UI线程。

查看BackgroundWorker组件以加载电影列表,它包含您需要的所有内容。

答案 1 :(得分:0)

看来问题是updateIMDBinfo调用正在占用你的UI线程。请参阅用于启动该进程的Thread或ThreadPool类的MSDN文档 - 然后更新进度条的调度可以在UI线程上无阻碍地进行。

我现在猜测的是,你的进度条是空的,然后在你完成时突然充满。所有这些调度都排队等待从当前消息处理器返回控制,但它没有返回,因为它与实际工作有关。