Je crée une petite application dans javafx. Je veux définir une couleur d'arrière-plan, voici donc mon code FXML .. comment je dois définir la couleur d'arrière-plan
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.text.*?>
<?import Java.lang.*?>
<?import Java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication1.FXMLhomepageController">
<children>
<Label fx:id="lb1" layoutX="139.0" prefHeight="109.0" prefWidth="343.0" text="home page" textAlignment="JUSTIFY" textFill="#355680">
<font>
<Font size="68.0" />
</font>
</Label>
</children>
</AnchorPane>
Voici un exemple:
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: blue;" xmlns="http://javafx.com/javafx/8.0.60" xmlns:fx="http://javafx.com/fxml/1" />
Si vous utilisez Scene Builder
, vous devriez apprendre à utiliser cette section sous Properties
:
Vous pouvez également utiliser une feuille de style CSS
pour ce faire.