DatePicker & Calendar released for WPF
The WPF Toolkit has been updated!!! Let’s take it for a test drive…
Before we start, we should reference the WPFToolkit.dll and include the following namespace
xmlns:toolkit="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit"
DatePicker
<toolkit:DatePicker />
The DatePicker has the following properties
- DisplayDate
- DisplayDateStart
- DisplayDateEnd
- SelectedDate
- BlackoutDates
- FirstDayOfTheWeek
- SelectedDateFormat
Calendar
<toolkit:Calendar />
The Calendar has the following properties
- DisplayDate
- DisplayDateStart
- DisplayDateEnd
- DisplayMode – Month, Year or Decade
- SelectedDate
- SelectedDates
- SelectionMode – SingleDate, SingleRange, MultipleRange or None
- BlackoutDates
- FirstDayOfTheWeek
- SelectedDateFormat
[UPDATE] WPF Toolkit: Calendar & DatePicker Walkthrough