自定义 DateTimePicker 值未保存在应用程序设置中
更新:
我想在我的应用程序设置中保存自定义 DateTimePicker.Value。 自定义格式为:dd/MM/yyyy hh:mm:ss,而不是 dd/MM/yyyy 我在应用程序设置参数中创建的字段是 LASTSAVE(日期/应用程序)
当我尝试在 ApplicationSettings/PropertyBinding ... VALUE 中链接我的字段 LASTSAVE 时,出现错误:
值“01/01/0001 00:00:00”对于“Value”无效。 ‘价值’必须 是...“MinDate”和“MaxDate”。
参数名称:值
然后我在控件 DATETIMEPICKER 的属性中输入了最小和最大日期。 我还在属性值中放入了一个开始日期,例如 23/11/2011 12:00:00 ;
但是,当我重新尝试将 ApplicationSettings/PropertyBinding ... 值链接到 LASTSAVE / 我遇到相同的错误(值“01/01/0001 00:00:00”对于“值”无效。)。我已经保存了所有内容,执行了一个将值放入 datetimepicker.value 的过程,但它没有保存,因为没有链接。
请问有解决办法吗?
UPDATED :
I want to save a Custom DateTimePicker.Value in my Application Settings.
The custom format is : dd/MM/yyyy hh:mm:ss, instead of dd/MM/yyyy
The field i've created in the application settings parameters is LASTSAVE (DATE / APPLICATION)
When I try to link in the ApplicationSettings/PropertyBinding ... VALUE with my field LASTSAVE, i have an error :
The Value '01/01/0001 00:00:00' is not valid for 'Value'. 'Value' must
be ... 'MinDate' et 'MaxDate'.Name of the parameter : Value
I then entered the MIN and MAX date in the properties of my control DATETIMEPICKER.
I have also put into the properties Value a start date like 23/11/2011 12:00:00 ;
However, when i retry to link in the ApplicationSettings/PropertyBinding ... value to LASTSAVE / I have the same error (The Value '01/01/0001 00:00:00' is not valid for 'Value'. ). I've saved all, do a process that put a value in the datetimepicker.value, but it's not saved, cause not linked.
A solution please ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
'01/01/0001 00:00:00' 是 DateTime.Empty,是尚未设置的 DateTime 的默认值。您的应用程序设置中是否有一个值?您是否正在处理尚未设置值的情况?
'01/01/0001 00:00:00' is DateTime.Empty, the default value for a DateTime that hasn't been set. Is there a value in your application settings to begin with? Are you handling the case where the value has not yet been set?