Reputation: 34158
I want date picker which shows only current day and following only. Not past THanks
Upvotes: 3
Views: 1352
Reputation: 5986
Here is how you can do it.
yourDatePickersName.DisplayDateStart = DateTime.Today;
Upvotes: 2
Reputation: 41393
You can use something like the following with the .NET 4 DatePicker:
xmlns:system="clr-namespace:System;assembly=mscorlib"
...
<DatePicker DisplayDateStart="{x:Static system:DateTime.Now}" />
Upvotes: 6