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

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.

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 TopMenuBottomWidget

if __name__ == "__main__":
import sys

app = QApplication(sys.argv)
slider = TopMenuBottomWidget()
slider.show()
app.exec_()
```

Result

![image](https://user-images.githubusercontent.com/55078043/148882447-83df7ecb-9a35-4d6b-8c66-a625d9ae60ef.png)

A and B are QPushButtons, bottom widget is QGraphicsView.