“Fügen Sie CSS zu Javafx FXML hinzu” Code-Antworten

Fügen Sie CSS zu Javafx FXML hinzu

.root {
    -fx-background-color:lightgray;
}
Upset Unicorn

Fügen Sie CSS zu Javafx FXML hinzu

package application;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;


public class Main extends Application {
    @Override
    public void start(Stage primaryStage) {
        try {

            FXMLLoader loader = new FXMLLoader(Main.class.getResource("view/RootLayout.fxml"));
            AnchorPane rootLayout = (AnchorPane) loader.load();

            Scene scene = new Scene(rootLayout, 400, 400);
            scene.getStylesheets().add(getClass().getResource("css/application.css").toExternalForm());

            primaryStage.setScene(scene);
            primaryStage.show();

        } catch(Exception e) {
            e.printStackTrace();
        }
    }

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

Fügen Sie CSS zu Javafx FXML hinzu

<StackPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.fxml.SettingsController" stylesheets="@app/cssfilepath.css">

......
.....
.....
</StackPane>
Upset Unicorn

Fügen Sie CSS zu Javafx FXML hinzu

.sun-button {
  -fx-graphic: url('./icons/sun.png');
}
Upset Unicorn

Ähnliche Antworten wie “Fügen Sie CSS zu Javafx FXML hinzu”

Fragen ähnlich wie “Fügen Sie CSS zu Javafx FXML hinzu”

Weitere verwandte Antworten zu “Fügen Sie CSS zu Javafx FXML hinzu” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen