我试图将我的TextField“colorBox0”的背景颜色更改为“value0”,但它摆脱了边框.
这是我的代码的简化版本:
static Paint value0 = Paint.valueOf("FFFFFF");
TextField colorBox0;
colorBox0.setBackground(new Background(new BackgroundFill(value0, CornerRadii.EMPTY, Insets.EMPTY)));
很感谢任何形式的帮助
谢谢
解决方法:
我发现你可以通过使用to string方法和substring方法构造一个字符串和变量的css代码字符串,如下所示:
colorBox0
.setStyle("-fx-control-inner-background: #"+value0.toString().substring(2));