web-dev-qa-db-fra.com

JavaFX Comment définir une image de fond de scène

Comment puis-je définir l'image de fond d'une scène?

37
John

Une des approches peut être comme ceci:

1) Créez un fichier CSS avec le nom "style.css" et définissez-y un sélecteur d'identifiant:

#pane{
    -fx-background-image: url("background_image.jpg");
    -fx-background-repeat: stretch;   
    -fx-background-size: 900 506;
    -fx-background-position: center center;
    -fx-effect: dropshadow(three-pass-box, black, 30, 0.5, 0, 0); 
}

2) Définissez l’identifiant du contrôle le plus haut (ou n’importe quel contrôle) de la scène avec la valeur définie en CSS et chargez ce fichier CSS dans la scène:

  public class Test extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {
        StackPane root = new StackPane();
        root.setId("pane");
        Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().addAll(this.getClass().getResource("style.css").toExternalForm());
        primaryStage.setScene(scene);
        primaryStage.show();
    }
}

Vous pouvez également donner un identifiant au contrôle dans un fichier FXML:

<StackPane id="pane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml" fx:controller="demo.Sample">
    <children>
    </children>
</StackPane>

Pour plus d'informations sur JavaFX CSS Styling, reportez-vous à ce guide .

37
Uluk Biy

Je sais que c'est une vieille question

Mais si vous voulez le faire par programme ou par la méthode Java

Pour les fonds d’image; vous pouvez utiliser BackgroundImage class

BackgroundImage myBI= new BackgroundImage(new Image("my url",32,32,false,true),
        BackgroundRepeat.REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.DEFAULT,
          BackgroundSize.DEFAULT);
//then you set to your node
myContainer.setBackground(new Background(myBI));

Pour peindre ou remplir des fonds; vous pouvez utiliser BackgroundFill class

BackgroundFill myBF = new BackgroundFill(Color.BLUEVIOLET, new CornerRadii(1),
         new Insets(0.0,0.0,0.0,0.0));// or null for the padding
//then you set to your node or container or layout
myContainer.setBackground(new Background(myBF));

Garde votre Java en vie && votre css mort ..

31
Elltz

Vous pouvez changer de style directement pour la scène en utilisant .root classe:

.root {
    -fx-background-image: url("https://www.google.com/images/srpr/logo3w.png");
}

Ajoutez ceci au CSS et chargez-le sous le nom "Uluk Biy" décrit dans sa réponse.

12
Sergey Grinev

En plus de @Elltz answer, nous pouvons utiliser à la fois le remplissage et l'image:

someNode.setBackground(
            new Background(
                    Collections.singletonList(new BackgroundFill(
                            Color.WHITE, 
                            new CornerRadii(500), 
                            new Insets(10))),
                    Collections.singletonList(new BackgroundImage(
                            new Image("image/logo.png", 100, 100, false, true),
                            BackgroundRepeat.NO_REPEAT,
                            BackgroundRepeat.NO_REPEAT,
                            BackgroundPosition.CENTER,
                            BackgroundSize.DEFAULT))));
0
JeSa