mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 04:01:07 +02:00
14 lines
277 B
Python
14 lines
277 B
Python
from superqt import QRangeSlider
|
|
from superqt.qtcompat.QtCore import Qt
|
|
from superqt.qtcompat.QtWidgets import QApplication
|
|
|
|
app = QApplication([])
|
|
|
|
slider = QRangeSlider(Qt.Horizontal)
|
|
slider = QRangeSlider(Qt.Horizontal)
|
|
|
|
slider.setValue((20, 80))
|
|
slider.show()
|
|
|
|
app.exec_()
|