HoYoCenter/interface/init/about.py

8 lines
263 B
Python
Raw Normal View History

2024-09-13 22:50:29 +08:00
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QLabel
class AboutWidget(QWidget):
def __init__(self, typex="init"):
2024-09-13 22:50:29 +08:00
super().__init__()
self.base = QVBoxLayout()
self.base.addWidget(QLabel("About"))
self.setLayout(self.base)