我正在使用 JavaFX2.2。在创建 UI 控件后,实际上是否可以将ImageView用作 UI 控件(例如 Button 或 Label)的构造函数中的参数?
我想更改控件的图像。我也可以用 CSS 来做,但我不确定如何在那里使用 jar-resources。
例子:
Label label = new Label("", new ImageView(new Image(getClass().getResourceAsStream("test.png"))));
label.getImageView().setImage(...); // there is no such method getImageView()