C# DateTimePicker 最大日期范围
我正在使用 datetimepicker 显示日期(从数据库检索)。我已经在几台机器上运行了我的应用程序,我发现在 Windows XP SP2 上,可以检索和显示的最大日期是 2020,但对于更高版本的操作系统,最大日期可能更高,例如 2999。了解这个问题吗?
感谢您的帮助。 晶晶
I am using datetimepicker which displays the date(which is retrieved from the database). I have run my application on a few machines and I have found that on Windows XP SP2, the max date that can be retrieved and displayed is 2020, but for later versions of the OS the max date can be highier, e.g. 2999. Does anyone know about this issue?
Thank you for your help.
Jing Jing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DateTime.MaxValue 属性来检索最大可能的日期,具体取决于系统。如果由于溢出而在读取日期时遇到问题,可以使用 DateTime.TryParse() 方法尝试读取该值而不引发异常。
更新:
马蒂尼奥是正确的。来自 MSDN:
因此,请使用 System.Globalization.CultureInfo.DateTimeFormat.Calendar.MaxSupportedDateTime 字段获取系统支持的最大日期值。
You can use the DateTime.MaxValue property to retrieve the largest possible date, dependent on the system. If you are having problems reading dates due to overflow, you can use the DateTime.TryParse() methods to attempt a read of the value without throwing an exception.
UPDATE:
Martinho is correct. From MSDN:
So, use the
System.Globalization.CultureInfo.DateTimeFormat.Calendar.MaxSupportedDateTime
field to get the maximum date value supported by the system.