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.
我DateTimePicker在 C# Winforms 中更改对象的显示值时遇到问题
DateTimePicker
我正在尝试DateTimePicker根据值更改日期,但显示不会改变。
dtpDisplayTo.Value = DateTime.Today;
我知道这已经过时了,但我也遇到了同样的问题,并通过一些研究找到了解决方案。在更改日期之前,您必须将CheckedDateTimePicker 的属性设置为True,否则控件会将更改视为 null 并且不显示新日期。真是奇怪的东西。
Checked
DateTimePicker 显示今天的日期,而不是显示其实际值