How do i set the minimum value of a date picker in xaml to be today’s date plus two days (in other words the mininmum value should be two days from now) and how do i set its type to be a DateTime ??
>Solution :
use the MinimumDate and MaximumDate properties
myDatePicker.MinimumDate = DateTime.Now.AddDays(2);