How can you change the appearance of JavaFX FileChooser using CSS?

I want to change the look of FileChooser using CSS. Doing this with SceneBuilder would also be nice, but since FileChooser does not belong to javafx.scene.controls, there seems to be no easy way to do this. I would like to be able to set things like font, colors, etc. I would prefer to do this with CSS, but I don't see how to do it directly in Java code. Thanks for any help.

+7
java css javafx
source share
1 answer

The appearance of the file selection depends on the user interface (OS) platform, and you cannot change this

0
source share

All Articles