Click here to Skip to main content
15,893,487 members
Articles / Programming Languages / Visual Basic
Article

XPander Controls Converged

Rate me:
Please Sign up or sign in to vote.
3.59/5 (19 votes)
4 Jan 20043 min read 223.2K   1.4K   40   47
WinXP like animated collapsing group box control.

Image 1

Introduction

There are a number of XP like grouping controls on CodeProject and elsewhere:

(Please let me know if I missed someone!)

Thanks to all those who wrote those nice controls. All these controls implement a number of features, however no single control implements all those features. So I decided to shamelessly copy their code and "Converge" everything in one! ;-) Also most of them were in C#, so I decided to start with VB.NET for this one. I used VS 2003 but they should work in VS 2002 also.

Feature list

  • Images on the left side of caption.
  • Animated expand/collapse. Animation can be switched off and the timing can also be changed. Gives the feeling of gradual fade away.
  • Drawing in gray if disabled.
  • Gradient fills.
  • Different chevron styles
  • Can be shown as non-collapsible
  • Tooltips
  • Office 2003 line style for the caption
  • Completely customizable

Using the control

You can use it in two ways:

  1. Drop XPanderList control to your form and then drop XPander controls to the XPanderList control.
  2. Or just drop XPander control to your form.

Most of the properties exposed on the controls are self-explanatory but some important ones are:

  • CaptionStyle - Choose a caption style. FlatLine makes it look like, Office 2003 flat caption with a line in the end, style.
  • ChevronStyle - Different chevron styles. Image, ArrowsInCircle, Triangle.
  • CollapsedImage, ExpandedImage, ExpandedHighlightImage, CollapsedHighlightImage - Specify your own bitmaps for chevrons! (Make sure that you have ChevronStyle set to Image.)
  • Image - Image on the left side of the caption.
  • CanToggle - Is the user allowed to expand/collapse? If
    VB
    False
    
    chevrons are not displayed, clicking on the caption does nothing and mouse cursor remains default.
  • ShowTooltips - Whether to show tool tips or not. Tool tip text is same as the caption text.
  • Animated - Enable/disable animation.
  • AnimationTime - How fast/slow (time). Used only if Animated is True. Value 0 behaves as if Animated=False
  • CaptionTextHighlightColor - Caption is drawn in this color when hovering.
  • CaptionHeight - Caption height can be adjusted. All child controls on this "group" are repositioned automatically with caption height change.

There are more properties for adjusting caption attributes like height, font, colors and so on.

Also methods Expand(), Collapse() are available on XPander and ExpandAll(), CollapseAll() are available on XPanderList.

Using the code

The "original articles" do such a good job of explaining the code so I will not repeat it here. They can be found with the links above.

Points of interest

Note that properties like CaptionLeftColor of type Color (and other properties like it) can be "Reset" using the VS.NET designer. This is achieved by using the DefaultValue attribute:

VB
<Description("Determines the ending (dark) " + _ 
    "color of the caption gradient fill."), _
    DefaultValue(GetType(Color), "198, 210, 248"), _
    Category("Caption")> _
Public Property CaptionRightColor() As Color

To draw disabled strings I use:

VB
ControlPaint.DrawStringDisabled(g, CaptionText, _ 
    m_CaptionFont, capcolor, CaptionRectF, format)

Similarly to draw disabled images I use:

VB
ControlPaint.DrawImageDisabled(g, m_ExpandedImage, _ 
    Me.Width - m_ExpandedImage.Width - 8, 2 + _ 
    imageOffsetY, Me.CaptionRightColor) 

Credits

Once again since this is more a copy/paste/organize operation then "new code", all credits go to those who wrote the original controls namely Daren May, Derek Lakin, Rob Tomson and the people who made TaskVision.

Revision history

  • Ver 1.2
    • New properties for pane color handling to get a look similar to Longhorn group boxes!. PaneBottomRightColor, PaneTopLeftColor, PaneOutlineColor
    • New property ImageOffset between image and caption top.
    • New property CaptionTextAlign, can be Left,Middle or Right
    • New CaptionStyle=WrapAroundLine
    • New ChevronStyle=PlusMinus
  • Ver 1.1
    • DrawChevronImage replaced by ChevronStyle. Currently you can select Image, ArrowsInCircle, Triangle or None.
    • FlatCaptionStyle replaced by CaptionStyle which can be Normal or FlatLine.
    • Reorganized most of the code to make it much more readable.
    • CaptionCurveRadius is also exposed now. Set it to 0 to remove curved captions.
    • Standard border styles can be used with BorderStyle. Enable border drawing by setting DrawBorder to True

Note: If you are already using version 1.0, you will have to change your form code to use CaptionStyle and ChevronStyle instead of FlatCaptionStyle and DrawChevronImage.

Happy XPanding!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
mkg
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Patented Pin
seanwright21-May-04 6:19
seanwright21-May-04 6:19 
GeneralRe: Patented Pin
compiler1-Jun-04 7:34
compiler1-Jun-04 7:34 
GeneralBug with ComboBoxes in .net.... Pin
sam@twmi.rr.com1-Jan-04 7:30
sam@twmi.rr.com1-Jan-04 7:30 
GeneralRe: Bug with ComboBoxes in .net.... Pin
mkg2-Jan-04 6:47
mkg2-Jan-04 6:47 
GeneralRe: Bug with ComboBoxes in .net.... Pin
mkg2-Jan-04 6:54
mkg2-Jan-04 6:54 
GeneralRe: Bug with ComboBoxes in .net.... Pin
mkg7-Jan-04 7:31
mkg7-Jan-04 7:31 
GeneralXPander set to Dock:Fill Bug Pin
Edneeis18-Dec-03 13:18
Edneeis18-Dec-03 13:18 
GeneralPermissions Pin
Derek Lakin26-Aug-03 5:01
Derek Lakin26-Aug-03 5:01 
Whilst I appreciate that you have credited the original authors for their work in your article, you certainly have not done so in your code. Given the nature of your control (merging the work of several authors) it would be polite in the least to mention the authors in the source code itself.

Additionally you have made use of icons/images of mine without permission that have previously been made available for personal use only. Given the open source nature of your code then please you will you add a specific credit for the artwork and refer to my website[^].

If you change the licensing of this control in the future, you will need to contact me to discuss the matter further.

Derek Lakin.

Try the Code Store for instant integrated access to an online repository of .NET components.

The great thing about being a slayer: is kicking ass is comfort food. Buffy

Salamander Software Ltd.
GeneralRe: Permissions Pin
mkg26-Aug-03 6:53
mkg26-Aug-03 6:53 
GeneralRe: Permissions Pin
Derek Lakin26-Aug-03 8:48
Derek Lakin26-Aug-03 8:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.