[PyQt] PartⅡ. QLineEdit
QLineEdit
基本功能:输入单行的文本
EchoMode(回显模式)
4种回显模式
- Normal 输入什么显示什么
- NoEcho 输入什么不显示,但是已经提交了
- Password 输入什么都显示 ****
- PasswordEchoOnEdit 输入什么,丢失目标以后显示*****
完整代码
from PyQt6.QtWidgets import QApplication, QWidget, QLineEdit
from PyQt6.QtGui import QIcon, QFont
from PyQt6.QtCore import QSize
import sys
class Window(QWidget):
def __init__(self):
super().__init__()
self.setGeometry(200, 200, 700, 400) # 设置窗口大小
self.setWindowTitle("Python GUI Development")
self.setWindowIcon(QIcon('images/example.jpg')) # 设置图片,没有的话不显示
line_edit = QLineEdit(self)
line_edit.setFont(QFont("Sanserif", 15)) # 设置字体
# line_edit.setText("Default Text") # 显示文字
# line_edit.setPlaceholderText("Please enter your username") # 设置背景文字,灰色
# line_edit.setEnabled(False) # 不能更改
line_edit.setEchoMode(QLineEdit.EchoMode.Password) # 控制显示类型,这里显示为密码类型
app = QApplication(sys.argv)
window = Window()
window.show()
sys.exit(app.exec())