vote up 1 vote down star

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.

flag

76% accept rate

2 Answers

vote up 2 vote down check

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.

link|flag
vote up 1 vote down

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;

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.