您会推荐什么样的WPF日历控件?我正在寻找可以让我显示可能持续数月的可变数周的东西。
答案 0 :(得分:6)
Microsoft现已发布了WPF日历控件。
<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>
(来源:windowsclient.net)
Charles Petzold也写了good article about customising the WPF calendar control。
答案 1 :(得分:0)