No. All this does is wire the event. Unless you explicitly write your application to use multiple threads, it won't. Everything will run on the main application thread.
When the main thread processes the event messages whatever method you have wired to the event handler will be called within that thread context. Your handlers will be blocking calls. However you can certainly spin off a new thread from the handler if you like.
-
Peter