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.
如何使用 vb.net 在月历中禁用过去日期并仅启用从今天开始的 3 个日期?我找不到 dayrender 事件。
有任何想法吗?
提前致谢。
您可以利用 MonthCalendar 控件的 MinDate 和 MaxDate 属性来满足您的需要,
代码:
MonthCalTest.MinDate = New DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day) MonthCalTest.MaxDate = MonthCalTest.MinDate.AddDays(3)
MINDATE - MAXDATE