c# - The solution to detach a control from a form -
i use java applet example. when open website has java applet on web page. java applet application run in web page. applet support detach out of web page , run single instance.
i have question: if have control inside form, or control maybe in lot of other controls. on form have full screen button. when user click on it, want control full screen. how it? please give me solution.
thanks.
note: application winform c#, .net 2.0.
a control can't live outside form.
in case easiest solution modify form make full screen (i.e. remove borders changing border style, change position , size fill whole screen), , modify control make fill form (you can change it's container form).
then when exit full screen mode, restore how before.
Comments
Post a Comment