Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject?

Tags:

wpf

In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject?

I can make my own, but if there is one available, I would like to use it.

like image 845
jyoung Avatar asked Oct 31 '08 15:10

jyoung


1 Answers

Reflector shows that the only class that implements ISynchronizeInvoke (i.e., the type of the FileSystemWatcher.SynchronizingObject property) is System.Windows.Form.Control (and its subclasses); there do not appear to be any WPF objects that implement this interface.

like image 73
Bradley Grainger Avatar answered Nov 15 '22 07:11

Bradley Grainger