mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-08-15 06:50:18 +02:00
14 lines
229 B
Python
14 lines
229 B
Python
from qtpy.QtCore import Qt
|
|
from qtpy.QtWidgets import QApplication
|
|
|
|
from superqt import QRangeSlider
|
|
|
|
app = QApplication([])
|
|
|
|
slider = QRangeSlider(Qt.Orientation.Horizontal)
|
|
|
|
slider.setValue((20, 80))
|
|
slider.show()
|
|
|
|
app.exec_()
|