I\'m using the Toolkit\'s Datepicker as above but I\'d like to restrict it to month and year selections only, as in this situation the users don\'t know or care about the ex
If you can use the Calendar control instead you could do
<toolkit:Calendar x:Name="_calendar" DisplayModeChanged="_calendar_DisplayModeChanged" DisplayMode="Year" />
with this codebehind
Private Sub _calendar_DisplayModeChanged(ByVal sender As System.Object, ByVal e As Microsoft.Windows.Controls.CalendarModeChangedEventArgs)
If _calendar.DisplayMode = Microsoft.Windows.Controls.CalendarMode.Month Then
_calendar.DisplayMode = Microsoft.Windows.Controls.CalendarMode.Year
End If
End Sub