I downloaded and installed the WPF Toolkit (which provides controls that could not be shipped in time with VS2008).
However, the DatePicker control does not look like its WinForms cousin.
alt text http://www.angryhacker.com/toys/datepicker.png
First, the dropdown button is not a dropdown, but a small picture of the calendar. Secondly, the calendar opens to the right on the control rather than underneath it. How can I make the control look like a normal date picker? Or should I be using something else?
You can download the source code from CodePlex and retrieve the current ControlTemplate from the generic.xaml. You can then copy this into your application resources and modify the control template from there.
No different than redefining the ControlTemplates of controls that shipped with .NET 3.5, they are all binary as well. I just actually did this today and sorry to include a giant blob of XAML but here is what I did to restyle the “15” button into a more “grid” calendar look. You’ll either have to put this in your App.Xaml or include it as a merged dictionary.