WPF DatePicker 是否允许指定时区?

发布于 2024-09-24 15:45:27 字数 179 浏览 4 评论 0原文

我正在使用 WPF 工具包的 DatePicker 来选择日期。我们希望将选择日期后获得的日期时间设置为所选日期的末尾。由于我们要将时间转换为 UTC 时间,因此我们需要能够指定用户的时区。由于该工具在我们的计算机上运行,​​因此我们无法使用当前计算机的本地时间。

在DatePicker中选择日期时是否可以指定日期对应的时区?

I'm using the WPF Toolkit's DatePicker to select a date. We would like to set DateTime that we get after selecting a date to be at the end of the selected date. Since we are converting the to UTC time we need to be able to specify the user's time zone. Since the tool is running on our machine's we cannot use the current machine's local time.

When selecting a date in the DatePicker is it possible to specify the time zone the date corresponds to?

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

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

发布评论

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

评论(1

看海 2024-10-01 15:45:27

不需要,但如果您想将 DateTime 从本地时间转换为 UTC,您所需要做的就是调用:

((DateTime) selectedTime).ToUniversalTime();

请务必阅读此方法的注意事项:http://msdn.microsoft.com/en-us/library/system.datetime.touniversaltime.aspx

No, but if you want to convert the DateTime from local time to UTC, all you need to do is call:

((DateTime) selectedTime).ToUniversalTime();

Make sure to read up on the caveats of this method: http://msdn.microsoft.com/en-us/library/system.datetime.touniversaltime.aspx

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