web-dev-qa-db-fra.com

Problème avec la couleur d'arrière-plan dans JavaFX 8

Il semble qu'il y ait un problème avec la définition des couleurs d'arrière-plan des panneaux dans JavaFX 8.

J'avais essayé ce qui suit, mais aucun d'entre eux n'a défini les couleurs d'arrière-plan appropriées.

VBox panel = new VBox();
panel.setAlignment(Pos.TOP_LEFT);

// None of the below work
panel.setStyle("-fx-background-color: #FFFFFF;");
panel.setBackground(new Background(new BackgroundFill(Color.WHITE, CornerRadii.EMPTY, Insets.EMPTY)));

Y a-t-il un problème dans la façon dont je règle la couleur d'arrière-plan? Cela fonctionnait avec les versions antérieures de JavaFX 2.2.

Merci.

15
Sirish V

Ces deux choses fonctionnent pour moi. Peut-être publier un exemple complet?

import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.ToggleButton;
import javafx.scene.layout.Background;
import javafx.scene.layout.BackgroundFill;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.CornerRadii;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.Paint.Color;
import javafx.stage.Stage;

public class PaneBackgroundTest extends Application {

    @Override
    public void start(Stage primaryStage) {
        BorderPane root = new BorderPane();
        VBox vbox = new VBox();
        root.setCenter(vbox);

        ToggleButton toggle = new ToggleButton("Toggle color");
        HBox controls = new HBox(5, toggle);
        controls.setAlignment(Pos.CENTER);
        root.setBottom(controls);

//        vbox.styleProperty().bind(Bindings.when(toggle.selectedProperty())
//                .then("-fx-background-color: cornflowerblue;")
//                .otherwise("-fx-background-color: white;"));

        vbox.backgroundProperty().bind(Bindings.when(toggle.selectedProperty())
                .then(new Background(new BackgroundFill(Color.CORNFLOWERBLUE, CornerRadii.EMPTY, Insets.EMPTY)))
                .otherwise(new Background(new BackgroundFill(Color.WHITE, CornerRadii.EMPTY, Insets.EMPTY))));

        Scene scene = new Scene(root, 300, 250);

        primaryStage.setTitle("Hello World!");
        primaryStage.setScene(scene);
        primaryStage.show();
    }

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

}
17
James_D
panel.setStyle("-fx-background-color: #FFFFFF;");
19
Sirish V

Essayez celui-ci dans votre document CSS,

-fx-background-color : #ffaadd;

ou

-fx-base : #ffaadd; 

En outre, vous pouvez définir directement la couleur d'arrière-plan de votre objet avec ce code.

yourPane.setBackground(new Background(new BackgroundFill(Color.DARKGREEN, CornerRadii.EMPTY, Insets.EMPTY)));
5
Shekhar Rai