PyQt 从用户处获取日期
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地实现:
这将为您提供 QDate 格式的变量。
如果您需要更易于使用的格式,那么您应该使用以下格式:
第一个返回:“PyQt4.QtCore.QDate(2011, 11, 8)”,
而第二个返回:“2011-11- 08"
You can make it simply:
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:
The first one gives you: "PyQt4.QtCore.QDate(2011, 11, 8)"
While the second returns: "2011-11-08"