Python: PyQT: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) (→Quellen) |
Flinh1 (Diskussion | Beiträge) |
||
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 4: | Zeile 4: | ||
<div align="right">'''[[Python: Module|Zur Seite "Python: Module"]]'''</div> | <div align="right">'''[[Python: Module|Zur Seite "Python: Module"]]'''</div> | ||
<div align="right">'''[[Python: Turtle|Zur Seite "Python: Turtle"]]'''</div> | <div align="right">'''[[Python: Turtle|Zur Seite "Python: Turtle"]]'''</div> | ||
− | <div align="right">'''[[Python: | + | <div align="right">'''[[Python: Pygame|Zur Seite "Python: Pygame"]]'''</div> |
<div align="right">'''[[Python: Tkinter|Zur Seite "Python: Tkinter"]]'''</div> | <div align="right">'''[[Python: Tkinter|Zur Seite "Python: Tkinter"]]'''</div> | ||
+ | <div align="right">'''[[Python: Anaconda|Zur Seite "Python: Anaconda"]]'''</div> | ||
+ | == Allgemeines == | ||
− | + | Download von https://sourceforge.net/projects/pyqt/ | |
+ | Installation unter Ubuntu / pip | ||
+ | pip install pyqt5 | ||
---- | ---- | ||
− | > | + | == Beispiele == |
− | + | ||
+ | === Fenster anlegen === | ||
+ | <nowiki> | ||
+ | from PyQt5.QtWidgets import * | ||
+ | import sys | ||
+ | |||
+ | app = QApplication(sys.argv) | ||
+ | |||
+ | window = QWidget() | ||
+ | window.setGeometry(0,0,500,500) | ||
+ | window.setWindowTitle('First') | ||
+ | |||
+ | window.windowTitle() | ||
+ | |||
+ | window.show() | ||
+ | |||
+ | sys.exit(app.exec_()) | ||
+ | </nowiki> | ||
---- | ---- |
Aktuelle Version vom 9. Dezember 2020, 16:29 Uhr
Inhaltsverzeichnis
Allgemeines
Download von https://sourceforge.net/projects/pyqt/
Installation unter Ubuntu / pip
pip install pyqt5
Beispiele
Fenster anlegen
from PyQt5.QtWidgets import * import sys app = QApplication(sys.argv) window = QWidget() window.setGeometry(0,0,500,500) window.setWindowTitle('First') window.windowTitle() window.show() sys.exit(app.exec_())
Quellen
- https://www.tutorialspoint.com/pyqt/pyqt_hello_world
| |