How to pass JavaFX variable into CSS style?

1.7k Views Asked by At

I want to take selected color and change background color of button.

private void  handleItemBackAction(ActionEvent eve)
{
          System.out.println("You clicked Set Background Color of Item!");     

        java.awt.Color color=JColorChooser.showDialog(null,"Select a color",java.awt.Color.CYAN);

        String hex = Integer.toHexString(color.getRGB() & 0xffffff);

        hex="#"+hex;
        Text.setText(hex);
        ShortcutButton.setStyle("-fx-background-color: hex;");
    }
2

There are 2 best solutions below

0
On BEST ANSWER

Try to put variable content value instead of its name:

ShortcutButton.setStyle("-fx-background-color: " + hex + ";");
2
On

You have the color you want in your hex variable.

if (!buttonColor.getStyle().trim().contains("-fx-background-color:" +hex)){   
    buttonColor.setStyle("-fx-background-color: " + hex + ";");
}