Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WPF 4.0 的日历控件中找不到最小日期 (MinDate) 属性。
如果日历控件中没有最小日期或最大日期属性,那么我该如何实现呢?
您是否只是想限制可选择的开始/结束日期?如果是这样,您可以使用 DisplayDateStart 和 DisplayDateEnd:
<Grid> <Calendar ... DisplayDateStart="5/1/2013" DisplayDateEnd="3/31/2014" /> </Grid>