Hide C # interface form

Despite the irony of this question, how could you hide the form or even better run the application completely?

+3
source share
5 answers

Set WindowStateto Minimized.

You can also hide it from Taksbar by setting ShowInTaskbar=false;

With these two properties, you can completely control the display of your form depending on your own requirements.

+2
source

, ? ? , , "", , DLL winforms, .

+3

To start the application without pauses, make it a window service, not a winforms app

+3
source

If you do not show your form, do not call out .Show()in your form Main().

+3
source

http://www.go4expert.com/forums/showthread.php?t=973 , here you can hide any window you want from C #.

+1
source

All Articles