簡體   English   中英

按下按鈕時打印 LineEdit 文本

[英]Print LineEdit text on a button press

如何更改以下代碼以使其在按下“確定”按鈕時打印行編輯小部件中寫入的任何內容? 當前版本返回“'示例'對象沒有屬性'文本框'”錯誤。

import sys
from PyQt5.QtWidgets import QApplication, QWidget,QPushButton,QLineEdit, QHBoxLayout, QLabel, QVBoxLayout
from PyQt5.QtGui import QIcon


class Example(QWidget):

    def __init__(self):
        super().__init__()

        self.initUI()


    def initUI(self):

        label = QLabel('Keyword') 
        button = QPushButton('OK')
        textbox = QLineEdit()
        hbox = QHBoxLayout()
        hbox.addWidget(label)
        hbox.addWidget(textbox)
        hbox.addWidget(button)

        vbox = QVBoxLayout()
        vbox.addLayout(hbox)
        vbox.addStretch(1)

        button.clicked.connect(self.button_clicked)

        self.setLayout(vbox)   

        self.setGeometry(300, 300, 300, 220)
        self.setWindowTitle('Icon')
        self.setWindowIcon(QIcon('web.png')) 
        self.show()

    def button_clicked(self):
        print(self.textbox.text())

if __name__ == '__main__':

    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

`

如果您希望可以在類的所有部分訪問變量,就像在您的情況下是 button_clicked 方法一樣,您必須使其成為類的成員,因為它必須在創建它時使用 self 。

class Example(QWidget):
    [...]

    def initUI(self):    
        label = QLabel('Keyword') 
        button = QPushButton('OK')
        self.textbox = QLineEdit() # change this line
        hbox = QHBoxLayout()
        hbox.addWidget(label)
        hbox.addWidget(self.textbox) # change this line

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM