I Have a Java FXML Project. It has a Slider from 1 to 10 with steps of 1. I have a Label.
Slider = sl_test
Label = txt_test
I want the the Label to update on every change of the Slider to display the current Value (which i know, i can get with sl_test.getValue()
).