ColorPicker更改背景颜色有什么错误?

时间:2018-10-09 17:46:44

标签: javafx background color-picker

enter image description here

当我在ColorPicker中选择一种颜色时,背景颜色没有变化,但是没有问题。有什么错误,我该如何解决?我的代码在顶部的图片中。而且请不要问,因为代码有点混乱,因为我没有编写太久的代码,也许只有一个飞蛾。#

感谢帮助!

-Spielekind005

1 个答案:

答案 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)))
    }
}

我的帖子中的代码应该正确运行,即使不再次询问。