Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/goxr3plus/dragadjustablelabel
- Owner: goxr3plus
- Created: 2016-09-21T20:25:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-13T22:42:22.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T00:50:12.305Z (6 days ago)
- Topics: javafx, javafx-11, javafx-8, javafx-application, javafx-components, javafx-desktop-apps, javafx-library, javafx-project
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)));