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.
我有一个窗口,其中包含 2 个日期选择器 dtpFromDate 和 dtpToDate,我想知道如何验证用户选择从日期为所选月份的第一个日期,到日期是同一个月的最后一个日期。
根据您的描述,一个月的下拉菜单应该足以满足您的需求(尽管您可能还需要一年的下拉菜单)。
您可以很容易地从该信息中构建第一个和最后一个日期。
var fromDate = new DateTime(theYear, theMonth, 1); var toDate = fromDate.AddMonths(1).AddDays(-1);