.NET DateTimePicker 类
我在表单中使用 DateTimePicker,然后在文本框中显示我选择的日期和时间。我的问题是,当我第一次选择日期时,它会显示如下内容:
11/05/2011 09:17:29 p.m.
然后我选择另一个日期,它会显示以下内容:
19/05/2011 09:17:29 p.m.
仅更新日期,为什么我无法更新时间或如何更新我这样做吗?
我正在使用这行代码进行更新:
fecha.Text = dateTimePicker1.Value.ToString();
I'm using a DateTimePicker in a form and then showing the date and time I pick in an textbox. My problem is that when I select a date the first time, it shows me something like:
11/05/2011 09:17:29 p.m.
Then I pick another date and it shows me this:
19/05/2011 09:17:29 p.m.
Only the date is updated, why I can't update the time or how can I do it?
I'm doing the update with this line of code:
fecha.Text = dateTimePicker1.Value.ToString();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置
myDateTimePicker.ShowUpDown = true
才能显示\更新时间。在这种情况下,也必须更改 ui 中的时间才能反映到您的代码中。You'll need to set
myDateTimePicker.ShowUpDown = true
for it to show\update the time. In that case also, one has to change the time in ui to be reflected into your code.