How to set background image for GridPane?
928280Apr 9 2012 — edited Apr 10 2012Hi,everyone:
I wonder how to set the background image for GridPane using CSS? My code isn't working well, the background image is not showing as I expected. Since I am quite new to this JavaFX, can any kind person give me a hint?
GridPane grid = new GridPane();
grid.setStyle("-fx-background-image: url('images/background.png');-fx-background-size: stretch;-fx-background-position:center top;");
Really appreciate!!
Hebe