mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 12:11:07 +02:00
13 lines
239 B
Python
13 lines
239 B
Python
from superqt import QRangeSlider
|
|
from superqt.qtcompat.QtWidgets import QApplication
|
|
|
|
app = QApplication([])
|
|
|
|
slider = QRangeSlider()
|
|
slider.setMinimum(0)
|
|
slider.setMaximum(200)
|
|
slider.setValue((0, 40, 80, 160))
|
|
slider.show()
|
|
|
|
app.exec_()
|