Reputation: 21231
What WPF Calendar control would you recommend? I am looking for something that will let me display a variable amount of weeks potentially spanning multiple months.
Upvotes: 2
Views: 4010
Reputation: 311315
Microsoft has now released a WPF calendar control.
<c:Calendar>
<c:DatePicker.BlackoutDates>
<c:CalendarDateRange Start="4/1/2008" End="4/6/2008"/>
<c:CalendarDateRange Start="4/14/2008" End="4/17/2008"/>
</c:DatePicker.BlackoutDates>
</c:Calendar>
<c:DatePicker>
<c:DatePicker.BlackoutDates>
<c:CalendarDateRange Start="4/1/2008" End="4/6/2008"/>
<c:CalendarDateRange Start="4/14/2008" End="4/17/2008"/>
</c:DatePicker.BlackoutDates>
</c:DatePicker>
(source: windowsclient.net)
Charles Petzold wrote a good article about customising the WPF calendar control too.
Upvotes: 6