Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / C#

ReadOnly ComboBox

Rate me:
Please Sign up or sign in to vote.
3.00/5 (14 votes)
23 Oct 2008CPOL1 min read 91.5K   1.4K   30   23
An extended ComboBox that adds a ReadOnly property to it.

Sample.JPG

Introduction

I decided to create a new combobox based on requests from the users of MSDN Windows Forms forum. It adds a new property to the regular ComboBox so it can be set to read-only, much like the regular TextBoxes.

Using the code

I made this code pretty straightforward so all you have to do is download the C# file enclosed in the ZIP file above and add it to your project. Build it, and the ExComboBox should be available on the Toolbox.

You can change the way the disabled button looks by commenting the ComboBoxRenderer line and uncommenting the commented portion of the code. You can set the color of the gradient that makes the button of the read-only mode by changing the colors of the LinearGradientBrush variable lgb on the OnPaint method:

C#
protected class DblPanel : Panel
{
    protected override void OnPaint(PaintEventArgs e)
    {
        if (this.Visible == true)
        {
            ComboBoxRenderer.DrawDropDownButton(e.Graphics, e.ClipRectangle, 
              System.Windows.Forms.VisualStyles.ComboBoxState.Disabled);
            /*Pen pen = new Pen(Color.DarkGray);
            Pen penBR = new Pen(Color.LightGray);
            Pen penArrow = new Pen(Color.LightGray);
            penArrow.Width = 2;
            penArrow.EndCap = LineCap.Square;
            Graphics g = e.Graphics;
            LinearGradientBrush lgb = new LinearGradientBrush(new Point(0, 0), 
                                      new Point(0, this.Height + 1), 
                                      Color.LightGray, Color.Gray);

Points of interest

I learned a bit while trying to add the read-only feature to the regular ComboBox. It is interesting that the combobox does not have any sub-controls in it (check the ComboBox.Controls.Count property and you will see it is 0); all is done by custom drawing. And, I also learned that there is no way to change this by overriding its Paint methods as it doesn't happen there; and, I couldn't figure out where it draws itself, so I used a Panel to draw over the regular dropdown button.

So basically, all the functionality is kept from the original combo box except the ability for the user to change the selected item without disabling the control (many complained that setting the Enabled property to false made it difficult to read and didn't allow the use of custom colors).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader 510.Ventures
Netherlands Netherlands
Fábio is a programmer since 14 years, which start with his curiosity in games and how to make them.

After that his taste for programming only grew, at the age of 16 Fábio accidentaly stumbled in a program that makes programs, a.k.a. Visual Basic 5.
From there he self taught, through books, how to code in VB 5, 6 and later C, C++ and finally C#.

Currently Fábio specializes in C# Desktop and Web Development, that he's been working with since 2004. When he has time, he helps users on MSDN forums and tries to write articles on codeproject.

MSDN Profile: http://social.msdn.microsoft.com/profile/f%C3%A1bio%20franco/?type=forum

Comments and Discussions

 
GeneralError when Visual Styles not active Pin
Frazer J10-Dec-09 8:29
Frazer J10-Dec-09 8:29 
GeneralRe: Error when Visual Styles not active Pin
Fabio Franco11-Dec-09 2:13
professionalFabio Franco11-Dec-09 2:13 
GeneralThankyou Pin
ger0nim016-Jun-09 7:23
ger0nim016-Jun-09 7:23 
GeneralRe: Thankyou Pin
Fabio Franco16-Jun-09 7:28
professionalFabio Franco16-Jun-09 7:28 
Questionuse of panel [modified] Pin
Member 197457029-Apr-09 20:21
Member 197457029-Apr-09 20:21 
AnswerRe: use of panel Pin
Fabio Franco30-Apr-09 1:55
professionalFabio Franco30-Apr-09 1:55 
QuestionRe: use of panel Pin
Member 197457030-Apr-09 2:22
Member 197457030-Apr-09 2:22 
AnswerRe: use of panel Pin
Fabio Franco30-Apr-09 5:14
professionalFabio Franco30-Apr-09 5:14 
GeneralSimply useful Pin
Giovanni Bejarasco23-Oct-08 9:44
Giovanni Bejarasco23-Oct-08 9:44 
GeneralRe: Simply useful Pin
DotDue23-Oct-08 21:33
DotDue23-Oct-08 21:33 
GeneralRe: Simply useful Pin
Fabio Franco24-Oct-08 1:05
professionalFabio Franco24-Oct-08 1:05 
GeneralA couple of suggestions Pin
DotDue22-Oct-08 22:01
DotDue22-Oct-08 22:01 
GeneralRe: A couple of suggestions Pin
Fabio Franco23-Oct-08 0:55
professionalFabio Franco23-Oct-08 0:55 
GeneralRe: A couple of suggestions Pin
DotDue23-Oct-08 21:31
DotDue23-Oct-08 21:31 
Generalgood Pin
simply_joe29-Jul-08 16:53
simply_joe29-Jul-08 16:53 
GeneralRe: good Pin
Fabio Franco30-Jul-08 4:09
professionalFabio Franco30-Jul-08 4:09 
GeneralI might be stupid Pin
Johnny J.29-Jan-08 5:41
professionalJohnny J.29-Jan-08 5:41 
GeneralRe: I might be stupid Pin
Fabio Franco29-Jan-08 6:14
professionalFabio Franco29-Jan-08 6:14 
GeneralRe: I might be stupid Pin
Fabio Franco29-Jan-08 7:05
professionalFabio Franco29-Jan-08 7:05 
GeneralUsing property Pin
dfjohn0053-Jan-08 23:56
dfjohn0053-Jan-08 23:56 
GeneralRe: Using property Pin
Fabio Franco4-Jan-08 0:03
professionalFabio Franco4-Jan-08 0:03 
GeneralRe: Using property Pin
Thomas Stockwell22-Jan-08 8:33
professionalThomas Stockwell22-Jan-08 8:33 
GeneralRe: Using property [modified] Pin
Fabio Franco24-Jan-08 3:16
professionalFabio Franco24-Jan-08 3:16 

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.