Click here to Skip to main content
Licence LGPL3
First Posted 22 Apr 2008
Views 114,520
Downloads 2,412
Bookmarked 135 times

Customizable ComboBox Drop-Down

By Lea Hayes | 21 Jun 2009
A combobox control with a customizable drop-down

1
2 votes, 4.8%
2
6 votes, 14.3%
3
12 votes, 28.6%
4
22 votes, 52.4%
5
4.30/5 - 42 votes
2 removed
μ 4.18, σa 1.57 [?]
Sample Image

Introduction

This article presents an extension of the .NET ComboBox which provides custom drop-downs. The control can automatically add a resizer grip at the bottom of a drop-down.

Design

Custom drop-down functionality can be achieved using the .NET ToolStripDropDown and ToolStripControlHost classes. These two classes are great because they prevent application forms from becoming inactive during drop-down. The custom popup functionality required by this control has been encapsulated within the class PopupControl (a new addition since the original article posting).

In addition to facilitating this control, the PopupControl class can be used to provide drop-down support in your own controls. The PopupControl also integrates the drop-down resize support (now without the need for a nested resizable container, see below for details).

Previously the drop-down control was resizable by nesting a resizable container. This was an okay solution (because it worked) but it caused some redraw errors during resize operations. The resize functionality has now been significantly improved, and it is now also possible to define which sides of the drop-down are resizable (if any). Resizing can now also be done by dragging the resizable edges of the drop-down. The new resize functionality is achieved by intercepting Win32 hit testing messages, and responding appropriately based upon the set PopupResizeMode property.

The following UML class diagram provides an overview of the presented classes:

uml-overview.png

Using the Code

As with most controls, this control can be created dynamically at runtime, or by using the Visual C# IDE designer's drag and drop features. During runtime, the property DropDownControl must be assigned to an instance of another control. The assigned control must not be contained elsewhere as this will cause problems.

Most drop-down controls appear better when their borders are removed.

namespace CustomComboDemo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            // Dynamically created controls.

            // Create grid view control.
            DataGridView gridView = new DataGridView();
            gridView.BorderStyle = BorderStyle.None;
            gridView.Columns.Add("Column1", "Column 1");
            gridView.Columns.Add("Column2", "Column 2");
            gridView.Columns.Add("Column3", "Column 3");
            gridView.Columns.Add("Column4", "Column 4");
            gridView.Columns.Add("Column5", "Column 5");
            this.customComboBox1.DropDownControl = gridView;

            // Create user control.
            UserControl1 userControl = new UserControl1();
            userControl.BorderStyle = BorderStyle.None;
            this.customComboBox2.DropDownControl = userControl;

            // Create rich textbox control.
            RichTextBox richTextBox = new RichTextBox();
            richTextBox.BorderStyle = BorderStyle.None;
            this.customComboBox3.DropDownControl = richTextBox;
        }
    }
}

Points of Interest

When writing the code, I found that dropped-down controls were not retrieving immediate input focus. This problem occurs because even though the drop-down code is ignored during the Win32 message handler, the standard win32 drop-down still appears (1x1 pixels). To avoid this, a timer is created which forces the dropped-down control to be focused after the default win32 drop-down has been focused. Once the timer has done its job, it disables itself.

History

  • 22nd April, 2008: Original version posted
  • 29th April, 2008: Updated download files
    • Fixed a bug that was pointed out by Adam Hearn
  • 17th June, 2008: Various changes
    • Improved design
    • Odd drawing effects during drop-down resize have now been significantly improved
    • Added PopupControl for general custom drop-down support
    • Added download files: Version 2
  • 28th June, 2008: Updated download files for Version 2
  • 15th July, 2008: Updated to version 2.1.
    • Many thanks to member “Leon v Wyk” for this update
    • The improved version now hides incompatible properties from the Visual Studio .IDE properties panel which was causing confusion
  • 21st June, 2009: Updated to version 2.2 
    • Updated source, demo project and UML overview diagram
    • Fixed bug found by CodeProject member “dokmanov”
      Whilst the “DropDownClosed” event was being fired when the drop down arrow was used to close the drop down, it was not being fired when the drop down was closed by clicking in the form area

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)

About the Author

Lea Hayes

Web Developer
Rotorz Limited
United Kingdom United Kingdom

Member
I have been using computers since I was about 8 years old, and have always enjoyed studying new concepts and technologies. I have been programming since about 1995 and have become experienced with many programming languages and technologies including C/C++, C#, DirectX, OpenGL, Java, ASP.NET, XML, XSL, SQL, JavaScript, HTML, CSS, ActionScript, VB, and Conitec Game Studio A5 Pro.
 
I have always been interested in game and multimedia development and have recently graduated with the first-class degree "BEng Games and Entertainment Systems Software Engineering" at the University of Greenwich.
 
Since graduating I have been continuing to study software and game development. In particular I am interested in game engine creation and programming language development. In addition to study, I am working on the design and creation of a game engine.
 
In my spare time I enjoy playing my musical instruments, especially my guitars. Its great fun and something which helps me unwind after a long day. I enjoy many flavours of music, in particular rock and heavy metal bands like Megadeth, Anacrusis, and Pink Floyd.

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralBinding DataGridview Pinmemberbbls198318:20 24 Mar '11  
GeneralMy vote of 5 PinmemberMark Guo17:10 1 Feb '11  
GeneralMsgBox message conflict with WndProc Pinmemberhomerhuang17:41 3 Feb '10  
GeneralRe: MsgBox message conflict with WndProc Pinmemberlhayes007:15 4 Feb '10  
GeneralDesigner improvement: SnapLines Pinmemberwolfgang_hg0:26 19 Nov '09  
GeneralRe: Designer improvement: SnapLines Pinmemberlhayes009:18 25 Nov '09  
QuestionUse DroppedDown property instead of IsDroppedDown? PinmemberT-C18:32 28 Oct '09  
AnswerRe: Use DroppedDown property instead of IsDroppedDown? Pinmemberlhayes0014:20 29 Oct '09  
Questionset combo text Pinmemberjixiaoliang18:48 26 Sep '09  
AnswerRe: set combo text Pinmemberlhayes005:22 27 Sep '09  
Questionproperty ReadOnly [modified] Pinmembersiggi6920:17 8 Sep '09  
AnswerRe: property ReadOnly Pinmemberlhayes003:32 11 Sep '09  
GeneralRe: property ReadOnly Pinmemberlhayes003:36 11 Sep '09  
GeneralControl.MinimumSize Pinmembertonyt13:42 28 Aug '09  
GeneralRe: Control.MinimumSize Pinmemberlhayes0016:39 29 Aug '09  
GeneralRe: Control.MinimumSize Pinmembertonyt3:22 7 May '10  
GeneralDropDown ListView Pinmemberxnuks2:42 17 Aug '09  
Questionautocomplete Pinmembercormoran6:19 29 Jul '09  
AnswerRe: autocomplete Pinmemberlhayes0013:33 7 Aug '09  
GeneralParent form losing focus on hide PinmemberPoustic6:36 17 Jul '09  
GeneralRe: Parent form losing focus on hide Pinmemberlhayes009:24 17 Jul '09  
GeneralRe: Parent form losing focus on hide PinmemberPoustic10:05 17 Jul '09  
GeneralRe: Parent form losing focus on hide Pinmemberlhayes0013:52 17 Jul '09  
GeneralRe: Parent form losing focus on hide PinmemberPoustic7:45 21 Jul '09  
GeneralRe: Parent form losing focus on hide Pinmemberlhayes008:31 21 Jul '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 21 Jun 2009
Article Copyright 2008 by Lea Hayes
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid