PyQt5 文字框
在本文中,你將學習如何在 PyQt5 中使用文字框。該小控制元件稱為 QLineEdit
,其方法是 setText()來設定文字框值,使用 text ()來獲取值。
我們可以使用 resize(width,height)
方法設定文字框的大小。可以使用 move(x,y)
方法或使用網格佈局來設定位置。
PyQt5 文字框
建立文字框非常簡單:
self.textbox = QLineEdit(self)
self.textbox.move(20, 20)
self.textbox.resize(280,40)
![PyQt5 文字框](/img/Tutorial/PyQt5/PyQt5 Textbox.png)
PyQt5 文字框示例
下面的示例建立一個帶有文字框的視窗。
import sys
from PyQt5.QtWidgets import QMainWindow, QApplication, QWidget, QPushButton, QAction, QLineEdit, QMessageBox
from PyQt5.QtGui import QIcon
from PyQt5.QtCore import pyqtSlot
class App(QMainWindow):
def __init__(self):
super().__init__()
self.title = 'PyQt5 textbox - tastones.com'
self.left = 10
self.top = 10
self.width = 400
self.height = 140
self.initUI()
def initUI(self):
self.setWindowTitle(self.title)
self.setGeometry(self.left, self.top, self.width, self.height)
# Create textbox
self.textbox = QLineEdit(self)
self.textbox.move(20, 20)
self.textbox.resize(280,40)
# Create a button in the window
self.button = QPushButton('Show text', self)
self.button.move(20,80)
# connect button to function on_click
self.button.clicked.connect(self.on_click)
self.show()
@pyqtSlot()
def on_click(self):
textboxValue = self.textbox.text()
QMessageBox.question(self, 'Message - tastones.com', "You typed: " + textboxValue, QMessageBox.Ok, QMessageBox.Ok)
self.textbox.setText("")
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = App()
sys.exit(app.exec_())