Main public logs

From Virtujoy Documentation

Combined display of all available logs of Virtujoy Documentation. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 13:03, 20 October 2025 Timothy talk contribs created page PyQt (Created page with "== Basic == <syntaxhighlight lang="python" line> from PyQt5.QtWidgets import QApplication, QLabel, QMessageBox, QPushButton, QVBoxLayout, QWidget def on_button_click(): alert = QMessageBox() alert.setText("You've clicked this button!") alert.exec() app = QApplication([]) root = QWidget() layout = QVBoxLayout() label = QLabel("Test") layout.addWidget(label) button = QPushButton("Click me!") button.clicked.connect(on_button_click) layout.addWidget(button...")