I want a message loop in a worker thread to accomodate some 3rd-party software. The software raises events and, when run in the UI thread, blocks the UI for longer than it should.
Something like
Application app = new Application();
app.Run(new MyHiddenWindow(... args ...);
won't work. The msdn docs say 1 instance of the Application class per AppDomain. So I think I need another AppDomain in the process. Together with communication between the 2 AppDomains. Am I missing something simpler?
Bill Swartz