Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yjg30737/pyqt-custom-frameless-mainwindow

PyQt Custom Frameless Main Window (Enable to move and resize)
https://github.com/yjg30737/pyqt-custom-frameless-mainwindow

framelesswindow pyqt pyqt-examples pyqt-gui pyqt-tutorial pyqt5 pyqt5-examples pyqt5-gui pyqt5-tutorial python python3 python37 qmainwindow qt

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
```python
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