Click here to Skip to main content
15,883,796 members
Articles / Programming Languages / C#
Article

Rebar Control Wrapper in C#

Rate me:
Please Sign up or sign in to vote.
4.83/5 (21 votes)
9 May 20023 min read 272.2K   1.7K   81   35
C# Wrapper for the Microsoft Rebar Control

Sample Image - rebarcontrol.jpg

Introduction

When Microsoft released its .NET framework I’m sure that many of you were as surprised as I was that the Rebar or “Coolbar” control was not included. So, I fired up the Customize Toolbar window and added the Microsoft Coolbar Control (everyone knows that .NET works perfectly with COM). Maybe your results were different than mine, but I found the wrapped version to be completely useless. I couldn’t find any way to add child controls or attach them to bands. I briefly fiddled with COM interop, but that seemed to be a dead end. The end result was that I decided to implement a .NET Rebar control using the ll and native API calls.


First of several Disclaimers

The code is functional, but not all of the bugs have been fixed. There is a bunch of stuff that hasn’t been completed at this point (chevron functionality; certain properties; some Unicode stuff; a resizing bug; problems with MouseEnter, MouseHover and MouseLeave; comments in the source…), but I’ll periodically post updates along the way.


About the control Source Code

This is the first control I’ve developed using C#, and it’s also one of my first few C# projects. Please, keep that in mind when reviewing the code. Along the way I found that frequently there were better ways of doing things. In most (but not all) cases I fixed the code. There’s also a fair amount of unused code lying around. I’ll clean it up when I get a chance. That said, the source code may still be interesting to programmers who are looking for sample code covering one or more of the following areas: Windows API Calls, Control Attributes, the ControlDesigner class, CollectionBase class, Component class, Control class, CollectionEditor class and/or Windows Messages.


Using the RebarWrapper Control

Using the Rebar should be relatively self explanatory. Drop it into your form using the toolbox. The initial instance is created without any bands. To add bands, click on the Bands property of the RebarWrapper in the Property Browser. The Bands Collection Editor will allow you to Add, Remove and Edit the Rebar Bands. Each Band’s properties are controlled via a BandWrapper Component. As you add bands you’ll see them pile up in the component tray at the bottom of the Form Designer. Clicking on a band in the Rebar brings up the Rebar’s properties in the Property Browser. It does not select the BandWrapper Component. Use the dropdown at the top of the Property Browser, Band Collection Editor or the icon in the component tray to access the band’s property.

Each Band can act as the Parent for one control (although this can be circumvented by hosting several controls inside of a panel or other container control). Designate the control to be parented by editing the Child property of the band. For the control to behave properly, the child control must be parented by the RebarWrapper control. Use the MinHeight and MinWidth properties to size the band to fit the control it is parenting.


Conclusion and Final Disclaimer

Play around with the various properties, events and settings. I’d be very interested to hear about any improvements/fixes/adaptations. As I mentioned before, I’ll try to take care of bug fixes when I have the time and interest, but use this code at your own risk. Future versions may drop or add functionality, not be compatible with the old version, or never be developed at all. With all that said, enjoy.

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
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

 
GeneralBest .NET Rebar implimentation on the net! Pin
Mr.Jinky24-Jan-09 8:53
Mr.Jinky24-Jan-09 8:53 
GeneralFor .NET 2.0 / VS2005 users Pin
Patrick Etc.8-Mar-07 6:49
Patrick Etc.8-Mar-07 6:49 
QuestionHow to show chevron Pin
jefrubio28-Apr-06 0:45
jefrubio28-Apr-06 0:45 
GeneralChevron and menubar (like IE) for Rebar Pin
vinod ms25-Oct-05 23:30
vinod ms25-Oct-05 23:30 
GeneralAPI and struct definitions Pin
Christian Wikander19-Aug-04 22:42
Christian Wikander19-Aug-04 22:42 
GeneralRe: API and struct definitions Pin
mav.northwind31-Aug-04 20:21
mav.northwind31-Aug-04 20:21 
GeneralRe: API and struct definitions Pin
Christian Wikander1-Sep-04 22:03
Christian Wikander1-Sep-04 22:03 
GeneralRe: API and struct definitions Pin
mav.northwind1-Sep-04 22:14
mav.northwind1-Sep-04 22:14 
QuestionWidbey? Pin
coder4rent3-May-04 10:10
coder4rent3-May-04 10:10 
AnswerRe: Widbey? Pin
Anonymous14-Jan-05 1:13
Anonymous14-Jan-05 1:13 
Generalresize width in runtime with vertical rebar Pin
Member 67099725-Mar-04 22:10
Member 67099725-Mar-04 22:10 
QuestionPossible to make this a floating toolbar? Pin
artesano15-Sep-03 3:14
artesano15-Sep-03 3:14 
QuestionIs this control bug free? Pin
Melvin Ng11-Sep-03 23:49
Melvin Ng11-Sep-03 23:49 
GeneralMulti-band drawing is not correct when the winform is minimized and restored Pin
Radeon@lab-a26-Aug-03 20:13
Radeon@lab-a26-Aug-03 20:13 
GeneralRe: Multi-band drawing is not correct when the winform is minimized and restored Pin
Dem28-Oct-03 8:53
Dem28-Oct-03 8:53 
GeneralFound a bug Pin
dacris20-Aug-03 20:04
dacris20-Aug-03 20:04 
GeneralYou could do this without API's Pin
Chris Pietschmann22-Jul-03 19:47
Chris Pietschmann22-Jul-03 19:47 
GeneralRe: You could do this without API's Pin
Christian Wikander15-Aug-04 22:10
Christian Wikander15-Aug-04 22:10 
GeneralRe: You could do this without API's Pin
Chris Pietschmann, MVP17-Aug-04 15:34
Chris Pietschmann, MVP17-Aug-04 15:34 
GeneralRe: You could do this without API's Pin
Joe McConnell29-Jun-06 7:51
Joe McConnell29-Jun-06 7:51 
GeneralRe: You could do this without API's Pin
Mr.Jinky24-Jan-09 8:50
Mr.Jinky24-Jan-09 8:50 
GeneralBand Positioning Pin
9ballrulz22-May-03 11:05
9ballrulz22-May-03 11:05 
GeneralAbout CollectionEdit Pin
Member 32258816-May-03 20:39
Member 32258816-May-03 20:39 
Generalabout floating toolbar Pin
Member 32258816-May-03 20:35
Member 32258816-May-03 20:35 
GeneralExcellent work! Pin
Radeon@lab-a7-May-03 23:04
Radeon@lab-a7-May-03 23:04 

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.