yjg30737 / pyqt-custom-frameless-mainwindow

PyQt Custom Frameless Main Window (Enable to move and resize)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pyqt-custom-frameless-mainwindow

PyQt Custom Frameless Main Window (Enable to move and resize). I made this because i want to make system-independent frameless window. I have to admit, that is quite a chore to accomplish only by me.

Requirements

PyQt5 >= 5.8

Setup

pip3 install git+https://github.com/yjg30737/pyqt-custom-frameless-mainwindow.git --upgrade

Example

Code Sample

from PyQt5.QtWidgets import QApplication
from pyqt_custom_frameless_mainwindow import CustomFramelessMainWindow


if __name__ == "__main__":
    import sys

    app = QApplication(sys.argv)
    example = CustomFramelessMainWindow()
    example.show()
    app.exec_()

See also

If you want to see more system-friendly(or system-dependent) and well-functioning one, check below.

pyqt-custom-titlebar-window

About

PyQt Custom Frameless Main Window (Enable to move and resize)

License:MIT License


Languages

Language:Python 100.0%