Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/yjg30737/pyqt-custom-frameless-mainwindow
- Owner: yjg30737
- License: mit
- Created: 2022-01-13T09:41:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-26T09:25:14.000Z (about 3 years ago)
- Last Synced: 2024-12-29T08:42:12.300Z (about 2 months ago)
- Topics: framelesswindow, pyqt, pyqt-examples, pyqt-gui, pyqt-tutorial, pyqt5, pyqt5-examples, pyqt5-gui, pyqt5-tutorial, python, python3, python37, qmainwindow, qt
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 CustomFramelessMainWindowif __name__ == "__main__":
import sysapp = 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.