.NET DateTimePicker 类

发布于 2024-11-09 02:37:49 字数 356 浏览 3 评论 0原文

我在表单中使用 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 技术交流群。

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

发布评论

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

评论(1

数理化全能战士 2024-11-16 02:37:49

您需要设置 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.

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