110

我有一个应用程序,每次我正在观看的日志文件以下列方式更新(附加新文本)时更新我的​​数据网格:

private void DGAddRow(string name, FunctionType ft)
    {
                ASCIIEncoding ascii = new ASCIIEncoding();

    CommDGDataSource ds = new CommDGDataSource();

    int position = 0;
    string[] data_split = ft.Data.Split(' ');
    foreach (AttributeType at in ft.Types)
    {
        if (at.IsAddress)
        {

            ds.Source = HexString2Ascii(data_split[position]);
            ds.Destination = HexString2Ascii(data_split[position+1]);
            break;
        }
        else
        {
            position += at.Size;
        }
    }
    ds.Protocol = name;
    ds.Number = rowCount;
    ds.Data = ft.Data;
    ds.Time = ft.Time;

    dataGridRows.Add(ds); 

    rowCount++;
    }
    ...
    private void FileSystemWatcher()
    {
        FileSystemWatcher watcher = new FileSystemWatcher(Environment.CurrentDirectory);
        watcher.Filter = syslogPath;
        watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite
            | NotifyFilters.FileName | NotifyFilters.DirectoryName;
        watcher.Changed += new FileSystemEventHandler(watcher_Changed);
        watcher.EnableRaisingEvents = true;
    }

    private void watcher_Changed(object sender, FileSystemEventArgs e)
    {
        if (File.Exists(syslogPath))
        {
            string line = GetLine(syslogPath,currentLine);
            foreach (CommRuleParser crp in crpList)
            {
                FunctionType ft = new FunctionType();
                if (crp.ParseLine(line, out ft))
                {
                    DGAddRow(crp.Protocol, ft);
                }
            }
            currentLine++;
        }
        else
            MessageBox.Show(UIConstant.COMM_SYSLOG_NON_EXIST_WARNING);
    }

当为 FileWatcher 引发事件时,因为它创建了一个单独的线程,当我尝试运行 dataGridRows.Add(ds); 要添加新行,程序只会在调试模式下崩溃而没有任何警告。

在 Winforms 中,这很容易通过使用 Invoke 函数解决,但我不确定如何在 WPF 中解决这个问题。

4

3 回答 3

234

您可以使用

Dispatcher.Invoke(Delegate, object[])

Application's(或任何UIElement's)调度程序上。

例如,您可以像这样使用它:

Application.Current.Dispatcher.Invoke(new Action(() => { /* Your code here */ }));

或者

someControl.Dispatcher.Invoke(new Action(() => { /* Your code here */ }));
于 2012-07-24T06:24:59.893 回答
57

最好的方法是SynchronizationContext从 UI 线程获取并使用它。此类抽象了对其他线程的编组调用,并使测试更容易(与Dispatcher直接使用 WPF 相比)。例如:

class MyViewModel
{
    private readonly SynchronizationContext _syncContext;

    public MyViewModel()
    {
        // we assume this ctor is called from the UI thread!
        _syncContext = SynchronizationContext.Current;
    }

    // ...

    private void watcher_Changed(object sender, FileSystemEventArgs e)
    {
         _syncContext.Post(o => DGAddRow(crp.Protocol, ft), null);
    }
}
于 2012-07-24T06:31:33.220 回答
7

使用[Dispatcher.Invoke(DispatcherPriority, Delegate)]从另一个线程或后台更改 UI。

步骤 1。使用以下命名空间

using System.Windows;
using System.Threading;
using System.Windows.Threading;

步骤 2。将以下行放在您需要更新 UI 的位置

Application.Current.Dispatcher.Invoke(DispatcherPriority.Background, new ThreadStart(delegate
{
    //Update UI here
}));

句法

[BrowsableAttribute(false)]
public object Invoke(
  DispatcherPriority priority,
  Delegate method
)

参数

priority

类型:System.Windows.Threading.DispatcherPriority

调用指定方法的优先级,相对于 Dispatcher 事件队列中的其他挂起操作。

method

类型:System.Delegate

不带参数的方法的委托,该委托被推送到 Dispatcher 事件队列。

返回值

类型:System.Object

被调用的委托的返回值;如果委托没有返回值,则返回 null。

版本信息

自 .NET Framework 3.0 起可用

于 2016-01-01T07:24:04.803 回答