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

A simple solution for changing a DateTimerPicker background color

By , 29 Jul 2011
 

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:

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)

About the Author

folk007
Belgium Belgium
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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralReason for my vote of 1 not work under vista/win7memberredcheek24 Aug '11 - 18:37 
Reason for my vote of 1
not work under vista/win7

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.130516.1 | Last Updated 29 Jul 2011
Article Copyright 2011 by folk007
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid