pyqtribbon
pyqtribbon copied to clipboard
Ribbon Bar for PyQt or PySide applications
updates: - [github.com/psf/black: 23.10.1 → 24.4.2](https://github.com/psf/black/compare/23.10.1...24.4.2) - [github.com/pycqa/isort: 5.12.0 → 5.13.2](https://github.com/pycqa/isort/compare/5.12.0...5.13.2)
it would be nice to support QT designer or quick designer to save boilerplate code.
Hi, thanks for this widget. I tried to use it on MacOS Big Sur, but running the example provided, the ribbon bar is not rendering at all. I think the...
QDarkStyleSheet项目网址:https://github.com/ColinDuquesnoy/QDarkStyleSheet.git system :Windows11 python version:3.8 Code: ```python import sys import qdarkstyle from PySide2.QtWidgets import QApplication, QLabel, QWidget, QVBoxLayout,QMainWindow from PySide2.QtGui import QIcon, QFont from PySide2.QtCore import Qt from pyqtribbon import...
When the popup mode is MenuButtonPopup, the position of the menu arrow can not be changed to bottom via QSS styles since the layout is always horizontal. Relates to #7...
The default style is still very primary, Word-like styles can be implemented based on QSS styles
Currently, we use a QGridLayout to manage widgets in the panels, causing all the widgets in the same column have the same widths. A different layout (i.e., QHBoxLayout) can be...