OK, I should start this off by saying I\'m not sure this is necessarily the right way to deal with this but...
Basically I have created a Window in WPF for displaying no
The WPF Threading Model has details on this. Look for "Multiple Windows, Multiple Threads."
Basically, you start a new thread, which creates the relevant window and then calls
System.Windows.Threading.Dispatcher.Run();
in order to run a dispatcher for that window, on the new thread.