Skip to content

Instantly share code, notes, and snippets.

View Anjaan-g's full-sized avatar
🚀
Aiming higher and higher

Anjaan Gaire Anjaan-g

🚀
Aiming higher and higher
View GitHub Profile
@MalloyDelacroix
MalloyDelacroix / PyQt5WindowChangeExample.py
Last active July 4, 2023 09:05
A PyQt5 example of how to switch between multiple windows.
import sys
from PyQt5 import QtCore, QtWidgets
class MainWindow(QtWidgets.QWidget):
switch_window = QtCore.pyqtSignal(str)
def __init__(self):
QtWidgets.QWidget.__init__(self)