13 lines
202 B
Python
13 lines
202 B
Python
|
|
#! /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()
|