WPF DatePicker 是否允许指定时区?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不需要,但如果您想将 DateTime 从本地时间转换为 UTC,您所需要做的就是调用:
请务必阅读此方法的注意事项: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:
Make sure to read up on the caveats of this method: http://msdn.microsoft.com/en-us/library/system.datetime.touniversaltime.aspx