WPF的进度条 - 停留在50%

时间:2015-06-18 22:12:50

标签: c# wpf

所以我在这个GUI上有一个带有BackgroundWorker和ProgressBar的类

public class mCrypt
{
   public byte[] DataBlock;
   public byte[] IVBlock;
   public static Bitmap FingerprintImg;
   public byte[] TempX;
   public byte[] TempAngles;
   public byte[] TempY;
   public byte[] TempKey;
   public byte[] X;
   public byte[] Y;
   public byte[] Angles;
   public byte[] Key;
   public int NoM;

   public mCrypt(BackgroundWorker bw, string imgLoc, string fileLoc, byte[] ivBlock)
   {
      if (!bw.CancellationPending)
      {
         bw.ReportProgress(0);
         LoadImg(imgLoc);
         bw.ReportProgress(7);
         DetectMinutiae(FingerprintImg);
         bw.ReportProgress(25);
         ConvertValues();
         bw.ReportProgress(30);
         LoadFile(fileLoc);
         // This LoadFile method contains DataBlock = File.ReadAllBytes(fileloc);
         bw.ReportProgress(35);
         HandleLength(ivBlock);
         bw.ReportProgress(40);
         ManageInitKey();
         bw.ReportProgress(45);
         GenerateKey();
         bw.ReportProgress(50);
      }
   }

   public byte[] EncryptFile(BackgroundWorker bgw)
   {
      if(!bw.CancellationPending)
      {
         for(int i = 0, i < (DataBlock.Length / 16), i++)
         {
            //Doing cryptographical process here
            ...
            //ProgressBar updates
            if((i / (DataBlock.Length / 16)) + 50 != 100)
               bgw.ReportProgress((i / (DataBlock.Length / 16)) + 50);
            else
               bgw.ReportProgress(100);
         }
      }
   }
}

当我尝试运行应用程序时,ProgressBar仅在构造函数运行时更新。将ProgressBar保持在50%状态,直到过程结束。我不明白为什么它不起作用。任何的想法?提前致谢

2 个答案:

答案 0 :(得分:2)

您没有正确使用BackgroundWorker,并且您正在锁定UI线程。

将来自LoadImg()LoadFile();ReportProgress()的来电转移到DoWork事件中。此外,如果他们触摸UI,您可能必须修改这些方法正在执行的操作。

我还建议您阅读:Threading in C#: BackgroundWorker

答案 1 :(得分:0)

请勿直接触摸UI thread进程中的background worker。 使用InvokeBeginInvoke修改UI

内部工作进程线程:

    bw.DoWork += (sender, args) =>
    {
    Dispatcher.BeginInvoke(DispatcherPriority.Loaded,new Action(()=>
                            {
                                //code that changes progress-bar
                            }
                           ));
     }