0

我是线程世界的新手,并试图让我的应用程序与线程一起工作。这是我得到的:

public static void ThreadProc()
{
    Thread.Sleep(500);
    MemoryMappedFile mmf = MemoryMappedFile.OpenExisting("SuperMMFofDoom", MemoryMappedFileRights.ReadWrite);
    MemoryMappedViewAccessor accessor = mmf.CreateViewAccessor(0, sizeof(double)*3 + sizeof(int) *2);
    Image imgS = new Image();
    ImageTrigger myMessage;
    Mutex imgMutex = new Mutex(false, "imgMutex");

    while (threadRunning)
    {
        imgMutex.WaitOne();

        accessor.Read(0, out myMessage);

        // [...]

        Dispatcher.Invoke(DispatcherPriority.Normal,
            new Action(delegate()
                {
                    // [...]
                }),
            new object[] { imgS, myMessage.performance }
           );

        imgMutex.ReleaseMutex();
    }
}

当我评论所有 Dispatcher.Invoke() 时,这个东西会编译。如果我不这样做,我会收到一个错误System.Windows.Threading.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority, System.Delegate, object)并且它不会编译。

有任何想法吗?

我在 Windows 7 Pro x64 上使用 VS2010。这是一个 C# WPF 项目,它还利用了一些在同一项目中编译的 C++ DLL。最后,这是文件的标题:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Threading;
using Microsoft.Win32;
using System.Runtime.InteropServices;
using System.ComponentModel;
using System.IO;
using System.Reflection;
using System.Diagnostics;
using System.Threading;
using System.IO.MemoryMappedFiles;
using Common;
4

1 回答 1

1

您不应该创建一个新的Action只是将您的代表作为一个:

异步:

Dispatcher.BeginInvoke(DispatcherPriority.Background, (Action)delegate()
{

});

同步:

Dispatcher.Invoke(DispatcherPriority.Background, (Action)delegate()
{

});

或者,如果您不在控件或窗口上:

Application.Current.Dispatcher.Invoke(DispatcherPriority.Background, (Action)delegate()
{

});
于 2012-12-05T05:13:37.757 回答