Any way to create a hidden main window in C#?

Posted by Bill on Stack Overflow See other posts from Stack Overflow or by Bill
Published on 2009-03-25T23:12:29Z Indexed on 2010/04/18 20:23 UTC
Read the original article Hit count: 220

Filed under:
|

I just want a c# application with a hidden main window that will process and respond to window messages.

I can create a form without showing it, and can then call Application.Run() without passing in a form, but how can I hook the created form into the message loop?

Is there another way to go about this?

Thanks in advance for any tips!

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms