PanelBar control for ASP.NET






4.09/5 (9 votes)
Nov 4, 2002
1 min read

104988

4224
Sample for building ASP.NET custom controls
Introduction
The PanelBar
control is a rich UI web control. It can be used to build an Outlook-style application. I'm providing this control as a sample for building ASP.NET custom controls.
Using the control
The PanelBar
has full design support. So, using the control is fairly simple. Just install the component by adding the PanelBar.dll to the list of components in Visual Studio. NET. Drag an instance of the PanelBar
component on a form and set the design-time properties. The PanelBar
has an items
property which gives access to the collection of PanelBarItems
. The appearance of each button can be set by using the Text
and ImageUrl
properties. The PanelBar
component also has an ImageUrl
property that is used for providing a default image for the buttons.
About the code
The code is very well commented. The following classes are defined:
ScrollPanel
: implements a scrollablePanel
, used as a base class for thePanelBar
controlPanelBar
: implements thePanelBar
controlPanelBarItem
: implements thePanelBar
buttons (consists of aLinkButton
and anImageButton
)PanelBarControlBuilder
: implements the control builder for thePanelBar
PanelBarControlDesigner
: implements the control designer for thePanelBar