vote up 0 vote down star

I would like to make an application where there is no form, only controls, this way theuser can see what they are doing on top of their work. How could I for instance put a textbox on the screen, just like form1, but without it being a parent of form1, almost as if it was form1. Basically form1 is hidden.

Thanks

flag

47% accept rate

2 Answers

vote up 1 vote down

Hide form1. Either make it a borderless form the same size as your control, or make it a broderless form and look into the TransparencyKey attribute on it.

link|flag
I thought of transparentcy, i guess ill try that, but then can the user still click desktop stuff? – unknown (yahoo) Aug 26 at 1:06
Yes, they can click through, as far as I'm aware. Try it and see? – Matthew Scharley Aug 26 at 1:18
vote up 3 vote down

Your controls have to be part of a form.

You can still do this by setting the form's opacity: http://msdn.microsoft.com/en-us/library/system.windows.forms.form.opacity.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.