Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/goxr3plus/dragadjustablelabel

JavaFX custom Node which is working like an invisible Slider
https://github.com/goxr3plus/dragadjustablelabel

javafx javafx-11 javafx-8 javafx-application javafx-components javafx-desktop-apps javafx-library javafx-project

Last synced: 4 days ago
JSON representation

JavaFX custom Node which is working like an invisible Slider

Awesome Lists containing this project

README

        

# DragAdjustableLabel

A custom Node which is working like a Slider.

* ! When you hold the mouse on it and drag upside the value is increased.

* ! When you hold the mouse on it and drag down side the value is decreased.


##Image
![Demostration of XR3Capture](http://i.stack.imgur.com/zPbL0.png)


##Example Code

//initialize

DragAdjustableLabel dragAdjustableLabel = new DragAdjustableLabel(10, 0, 100);

//add it for example to a BorderPane

primaryStage.setScene(new Scene(new BorderPane(dragAdjustableLabel)));