Dateien zu Teil 29

This commit is contained in:
Olli Graf
2025-02-16 14:39:34 +01:00
parent 6db74b04f5
commit 4d2b58b744
10 changed files with 245 additions and 0 deletions

12
teil29/pushbutton.py Executable file
View File

@@ -0,0 +1,12 @@
#! /usr/bin/python
#Datei: pushbutton.py
import sys
from PyQt6.QtWidgets import QApplication, QPushButton
app = QApplication(sys.argv)
window = QPushButton("Bitte klicken")
window.show()
app.exec()