要在PyQt5中創建一個文本框,可以使用QLineEdit或QTextEdit類。以下是一個簡單的示例代碼,演示如何創建一個文本框:
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLineEdit
class TextBoxExample(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.textbox = QLineEdit(self)
self.textbox.move(20, 20)
self.textbox.resize(280, 40)
self.setGeometry(100, 100, 320, 100)
self.setWindowTitle('Text Box Example')
self.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = TextBoxExample()
sys.exit(app.exec_())
在這個示例中,我們創建了一個簡單的應用程序窗口,并在窗口中添加了一個QLineEdit文本框。您可以通過調整move()和resize()方法的參數來設置文本框的位置和大小。最后,調用show()方法顯示窗口。
您也可以使用QTextEdit類來創建一個多行文本框,用法類似。希望這可以幫助您創建文本框的PyQt5應用程序。