So I dropped the standard WPF Calendar control on the MainWindow.xaml in a brand new WPF App in VS2010. If I click on a day in the calendar and then try to cli
Calendar
This code must help
Calendar.PreviewMouseUp += (o, e) => { if (!e.OriginalSource.Equals(Calendar)) { Mouse.Capture(null); } };