WPF BagOfTricks and maybe a little bug in setting current date value

I love wpf, but one of the most annoyng missing controls is a sort of dateTimePicker, luckily we have Kevin’s WPF Bag Of Trick that has a very useful set of controls. I begin to use this library today, I drop a DatePicker control on the page, and on page load I initialize with current date

1
2
InitializeComponent();
datePicker.Value = DateTime.Now;

The windows opens, but when I click on the DatePicker and try to select a new date nothing happens……it seems a bug because if I change the preceding code in this way (Setting passing only the date part of the DateTime.Now)

1
2
InitializeComponent();
datePicker.Value = DateTime.Now.Date;

All seems to work well. Apart this little bug the control is really fantastic :D

Alk.