Initial Commit

This commit is contained in:
Dan
2025-04-02 09:53:15 -04:00
commit 42cd95b237
5 changed files with 146 additions and 0 deletions

20
1.py Normal file
View File

@@ -0,0 +1,20 @@
from PySide6.QtWidgets import QApplication, QWidget, QMainWindow, QPushButton
import sys
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.setWindowTitle('my App')
button=QPushButton('Press me')
self.setMinimumSize(400,300)
self.setCentralWidget(button)
app = QApplication(sys.argv)
window = MainWindow()
window.show()
app.exec()