Ejemplo 1: color del botón Javafx
//making a red button in javafx
Button button = new Button("My Button");
button.setStyle("-fx-background-color: #ff0000; ");
Ejemplo 2: fondo de cgange desde el botón, haga clic en 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);
Ejemplo 3: color de fondo del botón de cambio de javafx
/*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
*/
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)