Can you create a window in its own thread?
In c++ you could create separate uithreads. These threads had their own message pump and you could create windows in them. You could post messages to these windows using PostThreadMessage.
Is their any way of doing this in c#? Is the only thread that can have a message pump the main ui thread?
Thanks in advance