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

Making Standard ComboBox appear flat

By , 18 May 2005
 

Sample Image - flatcombo.jpg

Introduction

Many flat combobox controls out there are not based on the standard ComboBox control that is supplied by .NET, instead they have their own interfaces and requires a customized type of ComboBoxItem when inserting into the Items container. If you already have code written based on the standard .NET ComboBox, changing to the flat look may also require you to modify your codes. I have personally experienced that as a problem, and someone else has brought that up as a problem as well in my recent article DateTimePicker appears Flat. Many of the information provided here may appear in the DateTimePicker appears Flat article already, or maybe explained better in there, so please check it out.

Using the Class

This class inherits from ComboBox, therefore you can use it in exactly the same way as the ComboBox control or even as a replacement.

So instead of doing this:

ComboBox  cmb = new ComboBox();

You will do:

ComboBox cmb = new FlatComboBox();
// OR
FlatComboBox cmb = new FlatComboBox();

That is how simple it is :)

Code Explanation

To achieve the flat look for the control, I have to override the WndProc method, which is the method that processes through all the window messages for this control. We are particularly interested with WM_NC_PAINT and WM_PAINT messages.

IntPtr hDC = GetWindowDC(this.Handle);

Graphics gdc = Graphics.FromHdc(hDC);

switch (m.Msg)

{
    case WM_NC_PAINT: 
        SendMessage(this.Handle, WM_ERASEBKGND, hDC, 0);
        SendPrintClientMsg(); // send to draw client area
        PaintFlatControlBorder(this, gdc);
        m.Result = (IntPtr) 1; // indicate msg has been processed 
        break;
    case WM_PAINT: 
        base.WndProc(ref m);
        // flatten the border area again
        Pen p = new Pen((this.Enabled? BackColor:SystemColors.Control), 2); 
        gdc.DrawRectangle(p, new Rectangle(2, 2, this.Width-3, this.Height-3));
        PaintFlatDropDown(this, gdc);
        PaintFlatControlBorder(this, gdc);
        break;
    default:
        base.WndProc(ref m);
        break;

}

ReleaseDC(m.HWnd, hDC);

gdc.Dispose(); 

}

WM_NC_PAINT message is received when the control needs to paint its border. Here I trapped the message and send WM_PRINTCLIENT message so that the ComboBox will draw its client area properly, then followed by drawing a flat border around it.

WM_PAINT message is received when the control needs to paint portion of its windows. ComboBox internally embeds a textbox and will draw the textbox with 3D border. A quick way to achieve the flat look is to paint a rectangle overlaying the 3D border of the textbox, therefore it will appear flat. We then paint the flat dropdown and border over it. Overriding the border is optional here, but I did it for the user experience where if the control is in focus, it will have a black line border or otherwise none.

Limitation

Currently, this FlatComboBox does not draw with ComboBox.Simple style. When this style is set for the ComboBox object, this class will let the base class perform the standard drawing.

History

  • 18 May 2005
    • DROPDOWNWIDTH value is dynamic now based on the system setting hence will work well in different screen resolutions.
    • Only acquires and creates window DC when necessary.

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

Fadrian Sudaman
Architect SMS Management and Technology
Australia Australia
Fadrian Sudaman is an experienced IT professional who has worked with .NET technology since the early beta. His background stems from a strong C/C++ development experience in building large commercial applications and great appreciation for best practice and modern approaches for building quality software. Currently, Fadrian works as a senior consultant specialises in .NET technology involved in variety of roles including project management, solution architecture, presales and application development. Fadrian is also completing his PhD part time at Monash University, Australia.
Follow on   Twitter   Google+

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   
Questionwhy win32?memberjuras924-Jul-07 9:57 
AnswerRe: why win32?memberFadrian Sudaman24-Jul-07 13:36 
Generalgood job!memberapache1o5-Jun-07 12:24 
good job!

GeneralC3memberThimani3-Apr-07 19:47 
Questionhow to make standard TextBox appear flatmembersuperkaier13-Apr-06 17:01 
AnswerRe: how to make standard TextBox appear flatmemberFadrian Sudaman17-Apr-06 16:37 
GeneralSupport for .net 2005memberhuppy1014-Jan-06 0:59 
GeneralRe: Support for .net 2005memberFadrian Sudaman4-Jan-06 1:25 
GeneralRe: Support for .net 2005memberhuppy1014-Jan-06 2:48 
GeneralRe: Support for .net 2005memberFadrian Sudaman4-Jan-06 21:02 
GeneralRe: Support for .net 2005memberqumer10126-May-07 7:18 
NewsAdvanced list box and combo boxmemberbrett5630-Nov-05 5:42 
Generalimplementing css in combo boxmemberluv u ajay24-Nov-05 18:15 
GeneralRe: implementing css in combo boxmemberFadrian Sudaman29-Nov-05 13:16 
GeneralBetter apperancemembermartin hoge28-Oct-05 3:19 
GeneralRe: Better apperancememberFadrian Sudaman1-Nov-05 11:44 
GeneralRight To Leftmemberbooky1-Sep-05 5:36 
GeneralRe: Right To LeftmemberFadrian Sudaman3-Sep-05 22:39 
GeneralThanks, but one problemmemberSerdar YILMAZ24-May-05 2:22 
GeneralRe: Thanks, but one problemmemberjucysoft25-May-05 1:27 
GeneralRe: Thanks, but one problemmemberSerdar YILMAZ25-May-05 1:34 
GeneralRe: Thanks, but one problemmemberFadrian Sudaman31-May-05 17:22 
GeneralRe: Thanks, but one problemmemberSerdar YILMAZ1-Jun-05 22:22 
GeneralRe: Thanks, but one problemmemberLe_MuLoT15-Nov-05 3:33 
GeneralGreat control, but a couple of questionsmemberJazzJackRabbit13-May-05 3:26 
GeneralRe: Great control, but a couple of questionsmemberFadrian Sudaman14-May-05 17:23 
Generalgood job and small suggestionmemberGiancarlo Aguilera17-Jan-05 4:37 
GeneralRe: good job and small suggestionmemberFadrian Sudaman17-Jan-05 11:16 
GeneralBug on 1900x1200 resolutionmemberElizabeth Gee13-Dec-04 7:58 
GeneralRe: Bug on 1900x1200 resolutionmemberFadrian Sudaman13-Dec-04 11:19 
GeneralRe: Bug on 1900x1200 resolutionmemberElizabeth Gee13-Dec-04 11:33 
GeneralRe: Bug on 1900x1200 resolutionmemberElizabeth Gee13-Dec-04 11:43 
GeneralRe: Bug on 1900x1200 resolutionmemberFadrian Sudaman13-Dec-04 12:30 
GeneralRe: Bug on 1900x1200 resolutionmemberElizabeth Gee14-Dec-04 5:18 
GeneralRe: Bug on 1900x1200 resolutionmemberFadrian Sudaman14-Dec-04 11:22 
GeneralRe: Bug on 1900x1200 resolutionmemberElizabeth Gee14-Dec-04 12:26 
GeneralRe: Bug on 1900x1200 resolutionmemberFadrian Sudaman14-Dec-04 17:30 
GeneralRe: Bug on 1900x1200 resolutionmemberElizabeth Gee15-Dec-04 11:33 
GeneralRe: Bug on 1900x1200 resolutionsussJuan Pedro Gonzalez20-Jan-05 16:22 
GeneralRe: Bug on 1900x1200 resolutionmemberJuan Pedro Gonzalez20-Jan-05 23:04 
GeneralRe: Bug on 1900x1200 resolutionmemberFadrian Sudaman18-May-05 17:51 
GeneralCool ComboxmemberSawjai29-Sep-04 17:49 
Generalconst int DROPDOWNWIDTH = 18;member_DD_MORPH_4-Aug-04 22:13 
GeneralRe: const int DROPDOWNWIDTH = 18;member_DD_MORPH_4-Aug-04 23:07 
GeneralRe: const int DROPDOWNWIDTH = 18;memberFadrian Sudaman5-Aug-04 13:50 
QuestionHi Fadrian, can I use flat combo in VB.Net?memberKingVikram24-May-04 20:41 
AnswerRe: Hi Fadrian, can I use flat combo in VB.Net?memberFadrian Sudaman24-May-04 20:59 
GeneralRe: Hi Fadrian, can I use flat combo in VB.Net?memberDuc_de_Belfort28-Jun-04 0:34 
GeneralRe: Hi Fadrian, can I use flat combo in VB.Net?memberFadrian Sudaman1-Jul-04 16:19 
GeneralRe: Hi Fadrian, can I use flat combo in VB.Net?memberDuc_de_Belfort2-Jul-04 4:43 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 18 May 2005
Article Copyright 2004 by Fadrian Sudaman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid