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.
我正在 c++/cli visual studio 2010 中编写一个程序,但我不知道如何将特定日期设置到我的日期时间选择器中。
我还想知道如何将默认日期设置为今天,这样你就不能去已经过去的日期了。
使用Value属性设置当前日期/时间,并MinDate设置可以选择的最早日期。
Value
MinDate
dateTimePicker1->MinDate = DateTime::Today;