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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Reflector shows that the only class that implements
ISynchronizeInvoke(i.e., the type of theFileSystemWatcher.SynchronizingObjectproperty) isSystem.Windows.Form.Control(and its subclasses); there do not appear to be any WPF objects that implement this interface.