自定义 DateTimePicker 值未保存在应用程序设置中

发布于 2024-12-17 21:58:11 字数 629 浏览 0 评论 0原文

更新:

我想在我的应用程序设置中保存自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梨涡少年 2024-12-24 21:58:11

'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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文