Aaron Fischer
Aaron Fischer

Reputation: 21211

Recommended WPF Calendar

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: 4009

Answers (2)

Drew Noakes
Drew Noakes

Reputation: 310832

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

Dominic Hopton
Dominic Hopton

Reputation: 7292

I would take a look at Kevin's Bag-o-tricks

Upvotes: 0

Related Questions