https://github.com/yjg30737/pyqt-top-menu-bottom-widget
PyQt inner widget consists of menu bar and bottom widget(whatever the widget is) naturally.
https://github.com/yjg30737/pyqt-top-menu-bottom-widget
pyqt pyqt-examples pyqt-gui pyqt-tutorial pyqt5 pyqt5-examples pyqt5-gui pyqt5-tutorial python python3 python37 qt
Last synced: 3 months ago
JSON representation
PyQt inner widget consists of menu bar and bottom widget(whatever the widget is) naturally.
- Host: GitHub
- URL: https://github.com/yjg30737/pyqt-top-menu-bottom-widget
- Owner: yjg30737
- License: mit
- Created: 2022-01-10T23:53:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-11T04:45:43.000Z (over 3 years ago)
- Last Synced: 2024-12-29T08:42:11.444Z (5 months ago)
- Topics: pyqt, pyqt-examples, pyqt-gui, pyqt-tutorial, pyqt5, pyqt5-examples, pyqt5-gui, pyqt5-tutorial, python, python3, python37, qt
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyqt-top-menu-bottom-widget
PyQt inner widget consists of menu bar and bottom widget(whatever the widget is) naturally.## Requirements
PyQt5 >= 5.8## Setup
```pip3 install git+https://github.com/yjg30737/pyqt-top-menu-bottom-widget.git --upgrade```## Example
Code Sample
```python
from PyQt5.QtWidgets import QApplication
from pyqt_top_menu_bottom_widget.topMenuBottomWidget import TopMenuBottomWidgetif __name__ == "__main__":
import sysapp = QApplication(sys.argv)
slider = TopMenuBottomWidget()
slider.show()
app.exec_()
```Result

A and B are QPushButtons, bottom widget is QGraphicsView.