天天看點

pyqt5設定dialog的标題_PyQt5 自定義對話框

本例子展示,您輸入名字,點選按鈕進行問候:

import sys

from PyQt5.QtWidgets import (QLineEdit, QPushButton, QApplication,

QVBoxLayout, QDialog)

class Form(QDialog):

def __init__(self, parent=None):

super().__init__(parent)

# Create widgets

self.edit = QLineEdit("此處寫下您的名字")

self.button = QPushButton("展示問候")

# Create layout and add widgets

layout = QVBoxLayout()

layout.addWidget(self.edit)

layout.addWidget(self.button)

# Set dialog layout

self.setLayout(layout)

# Add button signal to greetings slot

self.button.clicked.connect(self.greetings)

# Greets the user

def greetings(self):

print ("您好", self.edit.text())

if __name__ == '__main__':

# Create the Qt Application

app = QApplication(sys.argv)

# Create and show the form

form = Form()

form.show()

# Run the main Qt loop

sys.exit(app.exec_())

效果:

pyqt5設定dialog的标題_PyQt5 自定義對話框