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 に答える