当我在ColorPicker中选择一种颜色时,背景颜色没有变化,但是没有问题。有什么错误,我该如何解决?我的代码在顶部的图片中。而且请不要问,因为代码有点混乱,因为我没有编写太久的代码,也许只有一个飞蛾。#
感谢帮助!
-Spielekind005
答案 0 :(得分:0)
好的,我发现了我的错误! 我忘记了将背景色更改为一个动作事件。现在可以了!
yourButton.setOnAction(new EventHandler<Actionevent>()){
@override
public void handle(Action event){
Color yourColor = yourButton.getValue();
yourPane.setBackground(new Background(new BackgroundFill(yourColor, null, null)))
}
}
我的帖子中的代码应该正确运行,即使不再次询问。