c# – WPF Dispatcher {“调用线程不能访问此对象,因为不同的线程拥有它.”}

前端之家收集整理的这篇文章主要介绍了c# – WPF Dispatcher {“调用线程不能访问此对象,因为不同的线程拥有它.”}前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
首先我需要说的是我和 WPF和C#的noob.
应用:创建Mandelbrot图像(GUI)
我的调度员完全可以这样做:
private void progressBarRefresh(){

       while ((con.Progress) < 99)
       {
           progressBar1.Dispatcher.Invoke(DispatcherPriority.Send,new Action(delegate
                {
                    progressBar1.Value = con.Progress;
                }
              ));
       }
  }

当使用以下代码执行此操作时,我收到消息(标题):

bmp = BitmapSource.Create(width,height,96,pf,null,rawImage,stride);

this.Dispatcher.Invoke(DispatcherPriority.Send,new Action(delegate
            {                     
                img.Source = bmp;
                ViewBox.Child = img;  //vllt am schluss
            }
          ));

我将尝试解释我的程序如何工作.
我创建了一个新的线程(因为GUI没有响应)来计算像素和颜色.在这个线程(方法)中,在计算准备好之后,我使用调度程序在ViewBox中刷新我的图像.

当我不把计算在一个单独的线程,那么我可以刷新或构建我的图像.

解决方法

为了防止在不同线程之间共享对象,请始终在UI线程上创建该对象.稍后当您想要访问对象时,可以检查是否可以访问对象.如果您没有访问权限,请重新使用UI线程访问功能.示例代码如下:
private void YourMethod()
    {
        if (Application.Current.Dispatcher.CheckAccess())
        {
            // do whatever you want to do with shared object.
        }
        else
        {
            //Other wise re-invoke the method with UI thread access
            Application.Current.Dispatcher.Invoke(new System.Action(() => YourMethod()));
        }
    }

猜你在找的C#相关文章