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