Click here to Skip to main content
6,595,854 members and growing! (18,282 online)
Email Password   helpLost your password?
Languages » C / C++ Language » General     Intermediate License: The Code Project Open License (CPOL)

Collapsible Panels in VB.NET

By RoyClem

Expanding and collapsible panels implemented in VB.NET.
VB, Windows, .NET 1.1VS.NET2003, Dev
Posted:7 Sep 2004
Views:114,377
Bookmarked:61 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
14 votes for this article.
Popularity: 4.83 Rating: 4.21 out of 5

1

2
3 votes, 21.4%
3
4 votes, 28.6%
4
7 votes, 50.0%
5

Introduction

I needed to display multiple panels with related but discrete functionality on a single form. Individually, each panel would contain different controls, yet, every panel would relate to the larger scope of the form. Since each panel would take various amounts of space to display, I would be limited to the number of panels I could display on a single form without the form becoming too busy and confusing. That is, unless the panels could collapse to a minimize size and re-expand to their normal size. I needed panel controls that could collapse and expand.

Background

The idea for a collapsing panel came as I worked with Microsoft Visio 2003 and Microsoft Visual Studio 2003. I noticed that Visio contained side panels that collapsed and expanded exactly as I desired, and in a similar fashion, Visual Studio provides an Outlining feature that collapses and expands regions of code. I needed the same functionality only applied to panels.

Figure 1 Figure 2

So, I knew the functionality I desired existed but I didn�t have a clue how to implement it or if a control existed to encapsulate it.

After a search on the Internet, I discovered several projects on the Code Project site:

These are all excellent solutions and any of them would have worked but the Collapsible Group Box and Expanding panel from jeffb42 better suited the needs and presentation motif of my application. The only problem was that I needed the code in VB.NET � not C#. So, I had to convert it.

Jeff�s code contained a Trashcan feature that I didn�t want so as I converted his C# code, I dropped the Trashcan icon and functionality. Great idea and kudos to Jeff for providing the feature but it was extraneous for my purpose. I also renamed the project, file names and some of the methods to match my preferred terminology.

To prove the conversion was successful, I duplicated his test application using my converted VB.NET code.

Figure 3

Additionally, I added a Minimize() method to initially display the panels in a minimized state. Now, I could display multiple panels in a vertical fashion � like a list - on a form.

Figure 4

Each panel scrolls as necessary when it is expanded.

Figure 5

Displaying panels in a vertical fashion that expanded as needed fulfilled my requirement to display many related panels on a single form without compromising the appearance of the form.

Using the Code

Thanks again to jeffb42 for producing excellent documentation in his article. I won�t attempt to improve on his documentation, but I�ll summarize the steps needed to setup and use the code. Since the code is built as a User Control, you�ll need to go through some additional steps to use it.

First, add the CollapsiblePanel controls to your Toolbox in Visual Studio.

  1. Open a Form
  2. Select "My User Controls" from the Toolbox
  3. Right-click in the Toolbox, and select the "Add/Remove Items..." menu item
  4. After the "Customize Toolbox" dialog displays, select the "Browse..." button, and navigate to the directory containing CollapsiblePanel.dll.
  5. Select CollapsiblePanel.dll.

The new controls should be visible in the toolbox.

Note: You may need to close and reopen the solution for the controls to appear.

After the CollapsiblePanel controls have been added to the Toolbox, create a class derived from CollapseGroupBox and add some standard WinForm controls to it. Generally, the standard WinForm controls are added to a CollapseGroupBoxe which, in turn, is added to a CollapsePanel.

Standard Winform Control -> CollapseGroupBoxe -> CollapsePanel

  1. From the Solution Explorer, right-click on the project, and choose �Add->User Control�� (or �Add Inherited Control��)
  2. Edit the generated class. Change the base class from System.Windows.Forms to CollapseGroupBox:
    Public Class MyUserControl Inherits CollapseGroupBox
  3. Save the new inherited control, then switch to design view.
  4. Add some standard WinForm controls from the toolbox to the inherited form. Save it.
  5. Open the project�s main form and drop a CollapsePanel control from the Toolbox.
  6. Edit the main form's code to add the inherited class (from the steps above) to the CollapsePanel.
    Public Sub New()
        MyBase.New()
    
        'This call is required by the Windows Form Designer.
    
        InitializeComponent()
    
        CollapsePanel1.Add(new MyUserControl ())
    
    End Sub
  7. Compile and run.

Points of Interest

As previously mentioned, I added a Minimize() method to initially display the panels in a minimized state.

Public Sub Minimize()

To use it, simply call it before displaying the CollapseGroupBox object.

Dim myControl As MyUserControl = New MyUserControl()
myControl.Minimize()

Since, by default, the panels display in the expanded state, all I did to implement the Minimize() functionality was to simulate a click event. See the code for details.

Class Relationships

The following is a simple class diagram that shows the relationship of the classes in the project.

Figure 6

Future Enhancements

Since I converted jeffb42�s code, the same or similar issues and enhancements apply to mine. Currently, I don�t have specific plans to enhance the code - only to fix any bugs that exist as they appear in my particular application(s). If the need arises to enhance the application, I will do so, but, right now, the code works satisfactorily in the application(s) for which it was needed.

License

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

About the Author

RoyClem


Member
Roy is a software developer who digs all aspects of software development, from design to implementation.
Occupation: Architect
Location: United States United States

Other popular C / C++ Language articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 20 of 20 (Total in Forum: 20) (Refresh)FirstPrevNext
GeneralExpand panel during page load PinmemberNewbie_dydy8516:51 5 Jul '07  
GeneralLooks like something... PinmemberRamon Tristani17:26 8 Sep '06  
GeneralRe: Looks like something... PinmemberRoyClem19:49 9 Sep '06  
GeneralRe: Looks like something... PinmemberRamon Tristani23:06 9 Sep '06  
GeneralTry NicePanel Pinmembertechnoguys11:55 3 Feb '06  
GeneralRe: Try NicePanel Pinmemberpsxp7:12 21 Aug '06  
GeneralNice - My alternative PinmemberTigerNige7:12 25 Dec '05  
GeneralResize when minimized causes problems Pinmemberchakoretti5:45 11 Nov '05  
GeneralRe: Resize when minimized causes problems PinmemberRoyClem3:06 14 Nov '05  
AnswerRe: Resize when minimized causes problems Pinmemberchakoretti1:39 15 Nov '05  
GeneralLicense? PinmemberJustin F.10:45 13 Jan '05  
GeneralRe: License? PinmemberRoyClem13:32 13 Jan '05  
GeneralRe: License? PinmemberJustin F.17:07 13 Jan '05  
GeneralHaving some problems, please help PinmemberSnuffles7613:46 6 Nov '04  
GeneralRe: Having some problems, please help PinsussAnonymous3:26 8 Nov '04  
Generalhorizontal collapse Pinmemberanga5:20 20 Sep '04  
GeneralRe: horizontal collapse PinmemberRoyClem5:28 20 Sep '04  
Generalgood but PinsussAnonymous4:19 12 Sep '04  
GeneralRe: good but PinsussAnonymous4:20 12 Sep '04  
GeneralRe: good but PinmemberRoyClem4:49 15 Sep '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 7 Sep 2004
Editor: Smitha Vijayan
Copyright 2004 by RoyClem
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project