mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-09-07 10:10:31 +02: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_()
|