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.
|
|
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.
|
||
|
|
|
|
Reflector shows that the only class that implements |
||
|
|
|
|
there is one way. FileSystemWatcher when you enabling events (EnableRaisingEvents = true) creates it's own thread to monitor the FS events. via ISynchronizeInvoke it can async invoke members of your Form for example, (it's thread can async interact with the main thread - UI thread). in WPF there's no implementation of ISynchronizeInvoke, but there is a possibility to interact with the UI thread, via Dispatched property of your Window like this: var fsw = new FileSystemWatcher() { (setting the properties: Path, Filter, NotifyFilter, etc.) }; fsw.Created += (sender, e) => { Dispatcher.Invoke(new Action((params_identifiers) => { here the code wich interacts with your IU elements }), here_params); }; ... in this way (via Dispatcher.Invoke) with the rest of events fsw.EnableRaisingEvents = true; |
||
|
|