According to MSDN :
Setting the BackColor has no effect on
the appearance of the DateTimePicker.
You need to write a custom control that extends DateTimePicker. Override the BackColor property and the WndProc method.
Whenever you change the BackColor, don't forget to call the myDTPicker.Invalidate() method. This will force the control to redrawn using the new color specified.
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);
}