Click here to Skip to main content
15,886,724 members
Articles / Programming Languages / C#
Tip/Trick

A simple solution for changing a DateTimerPicker background color

Rate me:
Please Sign up or sign in to vote.
4.20/5 (2 votes)
29 Jul 2011CPOL 20.4K   1
How to change the background color of a DateTimerPicker control.

This is an answer to a question in comments section of the following article (I can't otherwise find a link to simply respond to that question): A DateTimePicker with working BackColor, by Vincenzo Rossi.


I wanted to come up with a simpler solution that has no limitations. I hit the same problem and came to the same conclusions as in the original post. However I didn't like the limitations, namely that one couldn't directly edit the days/months/years in the control anymore. Then I found a great solution here:
http://stackoverflow.com/questions/198532/changing-the-background-color-of-a-datetimepicker-in-net.


Basically, you create a control inheriting from DateTimePicker and add this override:


C#
const int WM_ERASEBKGND = 0x14;
 
protected override void WndProc(ref System.Windows.Forms.Message m)
{
     if(m.Msg == WM_ERASEBKGND)
     {
       Graphics g = Graphics.FromHdc(m.WParam);
       g.FillRectangle(new SolidBrush(_backColor), ClientRectangle);
       g.Dispose();
       return;
     }
 
     base.WndProc(ref m);
}

(where _backColor is the color of your choice...)


If you want to change the color, simply call the Invalidate() method of your DateTimePicker after changing _backColor. To me, that works wonderful, without any limitations.

License

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


Written By
Belgium Belgium
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralReason for my vote of 1 not work under vista/win7 Pin
redcheek24-Aug-11 18:37
redcheek24-Aug-11 18:37 

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.