12 lines
280 B
Python
12 lines
280 B
Python
from PySide6.QtWidgets import QApplication, QMainWindow ,QPushButton
|
|
|
|
class MainWindow(QMainWindow):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication()
|
|
window = MainWindow()
|
|
window.show()
|
|
app.exec() |