mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 12:11:07 +02:00
12 lines
200 B
Python
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_()
|