0
Q:

Javafx button color

//making a red button in javafx

Button button = new Button("My Button");
button.setStyle("-fx-background-color: #ff0000; ");
0
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);
0

New to Communities?

Join the community