Skip to content

Latest commit

 

History

History
26 lines (11 loc) · 625 Bytes

README.md

File metadata and controls

26 lines (11 loc) · 625 Bytes

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

##Example Code

   //initialize
   
    DragAdjustableLabel dragAdjustableLabel = new DragAdjustableLabel(10, 0, 100);
 
   //add it for example to a BorderPane
   
    primaryStage.setScene(new Scene(new BorderPane(dragAdjustableLabel)));