Hello,
I need to create two (or more) WPF windows from the same process. But the windows must be handled by separate threads because they should not be able to block each other. How do I do this?
In WinForms this is achieved by:
- Start a new thread
- Create a form from the new thread
- Call Application.Run with the form as parameter
But how do I do the same in WPF?