HoYoCenter/interface/init/about.py
2024-09-13 22:50:29 +08:00

8 lines
263 B
Python

from PyQt5.QtWidgets import QWidget, QVBoxLayout, QLabel
class AboutWidget(QWidget):
def __init__(self, typex="init"):
super().__init__()
self.base = QVBoxLayout()
self.base.addWidget(QLabel("About"))
self.setLayout(self.base)