How can I show a PyQt modal dialog and get data out of its controls once its closed?(如何显示 PyQt 模式对话框并在关闭后从其控件中获取数据?)
本文介绍了如何显示 PyQt 模式对话框并在关闭后从其控件中获取数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
对于像 QInputDialog 这样的内置对话框,我读到我可以这样做:
For a built-in dialog like QInputDialog, I've read that I can do this:
text, ok = QtGui.QInputDialog.getText(self, 'Input Dialog', 'Enter your name:')
如何使用我在 Qt Designer 中自己设计的对话框来模拟这种行为?例如,我想做:
How can I emulate this behavior using a dialog that I design myself in Qt Designer? For instance, I would like to do:
my_date, my_time, ok = MyCustomDateTimeDialog.get_date_time(self)
推荐答案
这是一个简单的类,你可以用它来提示日期:
Here is simple class you can use to prompt for date:
class DateDialog(QDialog):
def __init__(self, parent = None):
super(DateDialog, self).__init__(parent)
layout = QVBoxLayout(self)
# nice widget for editing the date
self.datetime = QDateTimeEdit(self)
self.datetime.setCalendarPopup(True)
self.datetime.setDateTime(QDateTime.currentDateTime())
layout.addWidget(self.datetime)
# OK and Cancel buttons
buttons = QDialogButtonBox(
QDialogButtonBox.Ok | QDialogButtonBox.Cancel,
Qt.Horizontal, self)
buttons.accepted.connect(self.accept)
buttons.rejected.connect(self.reject)
layout.addWidget(buttons)
# get current date and time from the dialog
def dateTime(self):
return self.datetime.dateTime()
# static method to create the dialog and return (date, time, accepted)
@staticmethod
def getDateTime(parent = None):
dialog = DateDialog(parent)
result = dialog.exec_()
date = dialog.dateTime()
return (date.date(), date.time(), result == QDialog.Accepted)
并使用它:
date, time, ok = DateDialog.getDateTime()
这篇关于如何显示 PyQt 模式对话框并在关闭后从其控件中获取数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何显示 PyQt 模式对话框并在关闭后从其控件中获取数据?
基础教程推荐
猜你喜欢
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
