There is a slider in the fxml file:
Slider fx: id = "slider" minHeight = "20" minWidth = "- Infinity" prefWidth = "300.0"
Want a thumb slider image that needs to be resized from my .java class as I can change the thumb icon image with css
.slider .thumb{
-fx-background-image :url("your image");
...
}
But I want to change the image from the .java class
Please suggest ..
thank
source
share