与 PyQt 的基本小部件交互

发布于 2024-09-27 05:54:27 字数 771 浏览 3 评论 0原文

请有人告诉我我在调用 pwTxt.text 方面做错了什么。

#!/usr/bin/python
import sys
from PyQt4 import QtCore, QtGui

from mainwindow import Ui_MainWindow


class MyForm(QtGui.QMainWindow):
    def __init__(self, parent=None):
        QtGui.QWidget.__init__(self, parent)
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)

    def on_pwExtract_pressed(self):
        print self.pwTxt.text

if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    myapp = MyForm()
    myapp.show()
    sys.exit(app.exec_())

print self.pwTxt.text 行失败,因为它找不到小部件,pwTxt 是在主窗口上定义的 QLineEdit。我刚刚在 QTDesigner 中制作并使用 pyuic4 生成了 python 代码。

如何正确引用同一窗口上的其他小部件,在本例中,我只想在按下 QPushButton pwExtract 时从名为 pwTxt 的 QLineEdit 获取文本。

多谢。

Please can someone tell me what im doing wrong here with respect to calling pwTxt.text.

#!/usr/bin/python
import sys
from PyQt4 import QtCore, QtGui

from mainwindow import Ui_MainWindow


class MyForm(QtGui.QMainWindow):
    def __init__(self, parent=None):
        QtGui.QWidget.__init__(self, parent)
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)

    def on_pwExtract_pressed(self):
        print self.pwTxt.text

if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    myapp = MyForm()
    myapp.show()
    sys.exit(app.exec_())

The line print self.pwTxt.text fails because it can't find the widget, pwTxt is a QLineEdit defined on the main window. I just made it in QTDesigner and generated python code with pyuic4.

How do I correctly reference other widgets on the same window, in this case I just want to get the text from a QLineEdit named pwTxt when the QPushButton pwExtract is pressed.

Thanks a lot.

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

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

发布评论

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

评论(1

久而酒知 2024-10-04 05:54:27

尝试:

print self.ui.pwTxt.text()

Try:

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