如何更改日历控件vs2010 vb.net的日期格式

发布于 2025-01-06 12:16:34 字数 364 浏览 1 评论 0原文

我正在尝试从 Visual Studio 2010 中的 Calender 控件存储 DoteOfBirth。

      Dim dob As Date = Calendar1.SelectedDate.Date.ToShortDateString()

我想像 dd/MM/yyyy 一样保存,没有任何其他内容,但是当我保存它时,它显示

      2012-02-28T00:00:00+00:00

我不知道在哪里更改格式,我不知道如何删除附加到日期的东西。我正在 vb.net 中编写它并保存到 xml 文件。

非常感谢。

I am trying to store DoteOfBirth from a Calender control in visual studio 2010.

      Dim dob As Date = Calendar1.SelectedDate.Date.ToShortDateString()

I wanna save like dd/MM/yyyy without anything else but when i save it it shows like

      2012-02-28T00:00:00+00:00

I don't know where to change the format and I don't know how to remove the thing attached to the date. I am writing it in vb.net and saving to xml file.

Thanks so much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

离笑几人歌 2025-01-13 12:16:34

如果您使用 DateTimePicker 控件,则应使用 FormatCustomFormat 属性。

如果您使用的是 MonthCalendar 控件...那么,您可以考虑使用 DateTimePicker 来代替,根据 MSDN

如果您需要自定义日期格式并且选择仅限于一个日期,您可以考虑使用 DateTimePicker 控件而不是 MonthCalendar。使用 DateTimePicker 消除了验证日期/时间值的大部分需要。

If you're using a DateTimePicker control, you should use the Format or CustomFormat properties.

If you're using the MonthCalendar control ... well, you may consider using the DateTimePicker instead, as per this excerpt from MSDN:

If you need custom date formatting and a selection limited to just one date, you might consider using a DateTimePicker control instead of a MonthCalendar. Using the DateTimePicker eliminates much of the need for validating date/time values.

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