Skip to content

Instantly share code, notes, and snippets.

@mgrady3
Created September 24, 2017 18:17
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mgrady3/c04890e44e6c89ed38246d77d0d6e2f7 to your computer and use it in GitHub Desktop.
Save mgrady3/c04890e44e6c89ed38246d77d0d6e2f7 to your computer and use it in GitHub Desktop.
Test Qt/PyQt Frameless Window resizing with QSizeGrip
"""
Test Qt Frameless Window resizing with QSizeGrip
Maxwell Grady, September 2017.
"""
import sys
from PyQt5 import QtCore, QtWidgets
from qtmodern.styles import dark
from qtmodern.windows import ModernWindow
def main():
app = QtWidgets.QApplication(sys.argv)
dark(app) # qtmodern
window = QtWidgets.QWidget()
# if you are not using qtmodern darkstyle, you can still make the QWidget resizeable and frameless by uncommenting the code below then commenting out the qtmodern code
# flags = QtCore.Qt.WindowFlags(QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint)
# window.setWindowFlags(flags)
window.setGeometry(QtCore.QRect(300, 300, 640, 480)) # arbitrary size/location
layout = QtWidgets.QVBoxLayout()
sizegrip = QtWidgets.QSizeGrip(window)
layout.addWidget(sizegrip, 0, QtCore.Qt.AlignBottom | QtCore.Qt.AlignRight)
window.setLayout(layout)
mw = ModernWindow(window) # qtmodern
mw.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
@tiantian1645
Copy link

Excellent!

@TaqsBlaze
Copy link

Awesome

@GoodDay360
Copy link

brain go brrr

@martinridos
Copy link

Marvellous, hidden under radar for so many years :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment