Reputation: 1002
In visual basic.net I have been playing around with groupboxes and things of that nature, is there any way to group items into a box, say, buttons, and use the groupbox as a container to move / hold all of its contents while not being visible in any way? (no decoration perhaps?)
I've tried making the groupbox invisible but that makes all the items within the groupbox invisible as well.
Upvotes: 3
Views: 3867
Reputation: 44941
What you really want to use is a panel, if you don't want the container to be visible (outline, etc).
Upvotes: 9