Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

PanelBar control for ASP.NET

0.00/5 (No votes)
10 Nov 2002 1  
Sample for building ASP.NET custom controls

Sample Image - PanelBar.jpg

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 scrollable Panel, used as a base class for the PanelBar control
  • PanelBar: implements the PanelBar control
  • PanelBarItem: implements the PanelBar buttons (consists of a LinkButton and an ImageButton)
  • PanelBarControlBuilder: implements the control builder for the PanelBar
  • PanelBarControlDesigner: implements the control designer for the PanelBar

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