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

WPF DatePicker Background Fix

By , 6 Jun 2012
 

WPF DatePicker Background Fix

There is an interesting issue with the DatePicker, and that is, for whatever reason Microsoft had, when you set the Background of the control, it only partially sets the Background. The center of the DatePicker remains a color of white. Not exactly what one would expect. Below is a picture, the top one is probably closer to what you would expect if you set the background to a gold color, the second textbox is what you actually get when you set the background to a gray.

The XAML for these controls looks like the following:

<DatePicker Name="datePicker1" Background="#FFC000"/>
<DatePicker Name="datePicker2" Background="#A6A6A6" />

I found a little trick that will more completely fill the background from the code-behind. In the constructor of the code-behind, I added the following code for the first DatePicker control:

datePicker1.Loaded += delegate
{
    var textBox1 = (TextBox)datePicker1.Template.FindName("PART_TextBox", datePicker1);
    textBox1.Background = datePicker1.Background;
};

License

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

About the Author

Clifford Nelson
Software Developer (Senior) ETeam/Delloitte
United States United States
Member
Has been working as a C# developer on contract for the last several years, including 3 years at Microsoft. Previously worked with Visual Basic and Microsoft Access VBA, and have developed code for Word, Excel and Outlook. Started working with WPF in 2007 when part of the Microsoft WPF team. For the last three years has been working primarily as a senior WPF/C# and Silverlight/C# developer. Currently working as WPF developer with PIMCO in Newport Beach, CA.

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   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 6 Jun 2012
Article Copyright 2012 by Clifford Nelson
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid