Write two difference between Panel and GroupBox
Write two difference between Panel and GroupBox
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Apr 8, 2014, 3:13 AM
• A Group box control can be placed with a title.
• The group box control cannot display the scroll bar.
• Only limited number of controls can be placed within the group box.
• Group box is a light weight component.
Panel Control:
• A panel control can't be placed with a title.
• The panel control can display the scroll bar.
• Any number of controls can be placed within the panel.
• Panel is a heavy weight component.
Munesh SharmaPosted Apr 8, 2014, 3:09 AM
• In case of Panel class captions cannot be displayed i.e. we can't set caption but in GroupBox class captions can be displayed.
• The Panel class can have scroll bars but GroupBox class cannot have scroll bar.