如何从确认对话框中获取结果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从确认对话框中获取结果相关的知识,希望对你有一定的参考价值。
我的弹出窗口的结果有问题。下面我展示了部分代码来理解这个问题。
这是一种弹出窗口,用户可以在GUI中进行选择。在此之后它应该显示一个窗口,其中会出现“你确定吗?”这个问题,还有两个按钮“是”和“否”。
问题是,当我测试下面的代码(在msg.show()
之前和之后)时,我有与False
相同的值集。
为什么它不像这样工作:
- 功能之前 - >
False
- 显示我的窗口,然后等待单击按钮
- 如果我点击“是”按钮,然后给
True
,否则False
我怎么能正确处理?还有另一种方法吗?
from PyQt4 import QtCore, QtGui
from Message import Ui_Message
import sys
class MessageBox(QtGui.QDialog):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent=None)
self.msg = Ui_Message()
self.msg.setupUi(self)
self.confirmed=False
self.declined=False
QtCore.QObject.connect(self.msg.NoButton, QtCore.SIGNAL(("clicked()")), self.Declined)
QtCore.QObject.connect(self.msg.YesButton, QtCore.SIGNAL(("clicked()")), self.Confirmed)
def Confirmed(self):
self.confirmed = True
MessageBox.close(self)
return True
def Declined(self):
self.declined = True
MessageBox.close(self)
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
msg = MessageBox()
print('Befor show window',msg.confirmed)
msg.show()
print('After show window', msg.confirmed)
sys.exit(app.exec_())
答案
您的示例不起作用,因为您在窗口关闭之前打印“After show window”。是exec()
方法阻止,而不是show()
方法,所以你的例子需要像这样写:
app = QtGui.QApplication(sys.argv)
msg = MessageBox()
print('Before show window', msg.confirmed)
msg.show()
app.exec_() # this blocks, waiting for close
print('After show window', msg.confirmed)
sys.exit()
但是,一个更加真实的示例显示如何使用对话框来确认操作将是这样的:
import sys
from PyQt4 import QtCore, QtGui
class MessageBox(QtGui.QDialog):
def __init__(self, parent=None):
super(MessageBox, self).__init__(parent)
self.yesButton = QtGui.QPushButton('Yes')
self.noButton = QtGui.QPushButton('No')
layout = QtGui.QGridLayout(self)
layout.addWidget(QtGui.QLabel('Are you sure?'), 0, 0)
layout.addWidget(self.yesButton, 1, 0)
layout.addWidget(self.noButton, 1, 1)
self.yesButton.clicked.connect(self.accept)
self.noButton.clicked.connect(self.reject)
class Window(QtGui.QWidget):
def __init__(self):
super(Window, self).__init__()
self.button = QtGui.QPushButton('Do Something')
self.button.clicked.connect(self.handleButton)
layout = QtGui.QVBoxLayout(self)
layout.addWidget(self.button)
def handleButton(self):
if self.confirmSomething():
print('Yes')
else:
print('No')
def confirmSomething(self):
msg = MessageBox(self)
result = msg.exec_() == QtGui.QDialog.Accepted
msg.deleteLater()
return result
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
window = Window()
window.show()
app.exec_()
以上是关于如何从确认对话框中获取结果的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法从我的 Dialog 片段中的 Activity 调用方法?