Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: (untagged)
How to invisible the border of a groupbox?
Posted
Updated 28-Nov-10 17:25pm
v2
Comments
Abhinav S 28-Nov-10 23:26pm    
Which programming language are you using? The answer will depend on that.

According to my knowledge You can not set border of Groupbox In visible..
You can try Using Panel Instead of Groupbox..

Hope i helped..
 
Share this answer
 
Well if your are using WPF, then :

- Set borderthickness to zero to hide the border:
VB
GroupBox1.BorderThickness = Nothing


- Set visibility to hidden to completely hide the groupbox:
VB
GroupBox1.Visibility = Windows.Visibility.Hidden
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900