How to collapse or expand the WinForms SplitContainerAdv panels?
Collapsing a panel
If you assign true to Panel1Collapsed property, then left or top panel will be collapsed and if you assign false to Panel1Collapsed then left or top panel will be expanded. This same behavior is applicable to Panel2Collapsed property.
Following code snippet toggles the collapse and expand behaviour
C#
// Collapse left or top panel and expand right or bottom panel this.splitContainerAdv1.Panel1Collapsed = true; this.splitContainerAdv1.Panel2Collapsed =false; //Collapse right or bottom panel and expand left or top panel this.splitContainerAdv1.Panel1Collapsed = false; this.splitContainerAdv1.Panel2Collapsed =true;
VB
'Collapse left or top panel and expand right or bottom panel Me.splitContainerAdv1.Panel1Collapsed = True Me.splitContainerAdv1.Panel2Collapsed = False 'Collapse right or bottom panel and expand left or top panel Me.splitContainerAdv1.Panel1Collapsed = False Me.splitContainerAdv1.Panel2Collapsed = True
Reference link: https://help.syncfusion.com/windowsforms/splitcontainer/splitcontaineradv#collapsing-a-panel
Conclusion
I hope you enjoyed learning about how to collapse or expand the WinForms SplitContainerAdv panels.
You can refer to our WinForms SplitContainer feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!