Files
superqt/examples/multihandle.py
Talley Lambert 9fde133977 rename
2021-04-24 21:07:40 -04:00

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_()