mirror of
https://github.com/pyapp-kit/superqt.git
synced 2026-01-05 03:40:47 +01:00
13 lines
243 B
Python
13 lines
243 B
Python
from qtrangeslider import QRangeSlider
|
|
from qtrangeslider.qtcompat.QtWidgets import QApplication
|
|
|
|
app = QApplication([])
|
|
|
|
slider = QRangeSlider()
|
|
slider.setMinimum(0)
|
|
slider.setMaximum(100)
|
|
slider.setValue((20, 80))
|
|
slider.show()
|
|
|
|
app.exec_()
|