top of page

PyQt6 simple window

  • Admin
  • Mar 23
  • 1 min read

from PyQt6.QtWidgets import QApplication, QWidget


import sys


app = QApplication(sys.argv)


window = QWidget()


window.show() Windows are hidden by default. It has to be shown..


app.exec()



The output displayed when the code executes




Recent Posts

See All

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

© 2023

 
bottom of page