I\'m currently using DatePicker’s control, where I tried to limit the dates to show MinDate & Maxdate. Unfortunately I couldn\'t find any related method to set the Min a
If you use DatePicker control (.net Framework >= 4.0) you can bind it also directly in the XAML code like this :
and if you use DateTimePicker control from Xceed Extended WPF toolkit you can bind Maximum Property the same way as DisplayDateEnd for DatePicker.
p.s. Don't forget to add folowing to your XAML file header:
xmlns:System="clr-namespace:System;assembly=mscorlib"