Click here to Skip to main content
Click here to Skip to main content

Adding a custom control to a ToolStripDropDownButton

By , 9 Oct 2006
 

Sample Image - ToolStripDropDown.jpg

Introduction

This article demonstrates one way of extending ToolStripDropDown to display a custom control in a drop-down button of a ToolStrip.

While a 'Table Sizer' control (similar to that used in the MS-Word toolbar) is used in the example, the article is primarily intended as a starting point for those wanting to extend ToolStripDropDown.

Background

The following diagram depicts some of the classes typically used to implement a ToolStrip:

Note that the items of a ToolStrip (i.e., ToolStripItem-derived elements) are Components, not Controls. To add a Control-derived object to a ToolStrip (or, in our case, a ToolStripDropDown) we use the TooStripControlHost class.

Using TooStripControlHost to host our custom control, we end up with the following design:

Any configuring and/or wiring up of events required for the TableSizeControl instance can be performed through the public Selector property of the ToolStripTableSizeSelector class.

Usage

Using the drop down is mostly a matter of creating the drop-down and assigning it to the drop-down button on the ToolStrip:

    public Form1()
    {
        InitializeComponent();

        ToolStripTableSizeSelector dropDown = new ToolStripTableSizeSelector();

        dropDown.Opening += new CancelEventHandler(DropDown_Opening);
        dropDown.Selector.TableSizeSelected += 
            new TableSizeSelectedEventHandler(Selector_TableSizeSelected);

        this.tableSizerDropDownButton.DropDown = dropDown;
    }

Note: the Opening event is hooked up here to reset the state of the TableSizeControl before it is displayed.

Points of Interest

There were several 'sticking points' in presenting a custom control as a drop-down item:

  • ensuring the background colour of the hosted control matched the colour scheme of the ToolStrip;
  • setting the focus to the custom control when the drop-down is first displayed.

For want of a better solution, these were addressed via the OnOpening and OnOpened events of the ToolStripDropDown class.

Closing the drop-down at the appropriate time was achieved by hooking up the 'selected' and 'cancelled' events of the custom control when it is first created. As an alternative, ToolStripControlHost offers the protected virtuals: OnSubscribeControlEvents and OnUnsubscribeControlEvents. Perhaps, this would have been a better place to wire up the events, although it wasn't clear from the documentation what the benefit of this approach is.

References

Below are additional articles on working with the ToolStripControlHost class:

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

About the Author

Tony Ioanides
Web Developer
Australia Australia
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThanksmemberMurugesan.sam2 May '12 - 2:04 
GeneralHI Tony Ioanidesmemberchenli051320 Jan '09 - 20:49 
Generali found a problemmemberchenli051320 Jan '09 - 20:43 
Generalgreate article [modified]memberchenli051313 Jan '09 - 2:31 
Generaldatetime pickermemberyoav sagi25 Feb '07 - 2:29 
GeneralNice articlememberPaddington10 Dec '06 - 19:18 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 9 Oct 2006
Article Copyright 2006 by Tony Ioanides
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid