mirror of
https://github.com/serialexperiments0815/PythonJigsaw01.git
synced 2026-07-12 15:32:26 +00:00
9 lines
296 B
Python
9 lines
296 B
Python
from PyQt5.QtWidgets import QVBoxLayout, QLabel, QDialog
|
|
|
|
class AboutWindow(QDialog):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.setWindowTitle("About")
|
|
layout = QVBoxLayout()
|
|
layout.addWidget(QLabel("About this application."))
|
|
self.setLayout(layout)
|