“Cor do botão Javafx” Respostas de código

Cor do botão Javafx

//making a red button in javafx

Button button = new Button("My Button");
button.setStyle("-fx-background-color: #ff0000; ");
Mocat

Javafx alterar o botão de fundo da cor

/*can address these properties: */
-fx-border-width
-fx-border-color
-fx-background-color
-fx-font-size
-fx-text-fill

/*	see source for more examples
	see JavaFX CSS Reference Guide for additional properties:
	https://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html
*/
Solstice

Cor do botão Javafx


ToggleButton btn = new ToggleButton("Say 'Hello World'");
btn.setOnAction((ActionEvent event) -> {
    System.out.println("Hello World!");
});

...
scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());

Cute Cobra

CGANGE FUNCIMENTO A partir do botão Clique em Java FX

BackgroundImage backgroundImage = new BackgroundImage( new Image( getClass().getResource("/testing/background.jpg").toExternalForm()), BackgroundRepeat.NO_REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.DEFAULT, BackgroundSize.DEFAULT);
        Background background = new Background(backgroundImage);

        Button button = new Button( "Click me!");
        button.setBackground(background);
Smiling Shrike

Respostas semelhantes a “Cor do botão Javafx”

Perguntas semelhantes a “Cor do botão Javafx”

Mais respostas relacionadas para “Cor do botão Javafx” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código