PyQt 从用户处获取日期

发布于 2024-12-14 09:27:32 字数 108 浏览 1 评论 0原文

我在 Qt Designer 中使用按钮和 QDateEdit 构建了简单的小部件。 用户将日期输入到 QDateEdit 中,然后当他按下按钮时,日期将被保存到变量中。

我该怎么做呢?

I built simple widget in Qt Designer with a button and a QDateEdit.
The user will enter the date into the QDateEdit and then when he presses the button, the date will be saved to a variable.

How can I do it?

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

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

发布评论

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

评论(1

¢好甜 2024-12-21 09:27:32

您可以简单地实现:

var_name = self.dateEdit.date()

这将为您提供 QDate 格式的变量。
如果您需要更易于使用的格式,那么您应该使用以下格式:

temp_var = self.dateEdit.date() 
var_name = temp_var.toPyDate()

第一个返回:“PyQt4.QtCore.QDate(2011, 11, 8)”,

而第二个返回:“2011-11- 08"

You can make it simply:

var_name = self.dateEdit.date()

This will get you a variable in QDate format.
If you need it in a format which would be easier to work with then you should use this:

temp_var = self.dateEdit.date() 
var_name = temp_var.toPyDate()

The first one gives you: "PyQt4.QtCore.QDate(2011, 11, 8)"

While the second returns: "2011-11-08"

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