Files
superqt/examples/basic.py
Talley Lambert 487921c791 more readme
2021-04-24 23:35:43 -04:00

12 lines
200 B
Python

from qtrangeslider import QRangeSlider
from qtrangeslider.qtcompat.QtWidgets import QApplication
app = QApplication([])
slider = QRangeSlider()
slider.setValue((20, 80))
slider.show()
app.exec_()