我想将VBox.getChildren()
ObservableList
绑定到我自己的ObservableList
。因此,当我的进程检测到一个图像时,它会被添加到我的列表中,然后自动添加到VBox中。
Bindings.bindContentBidirectional(myList,vbox.getChildren());
抛出以下异常:
线程“Thread-3”中的异常java.lang.UnsupportedOperationException
还有其他办法吗?上面的问题是什么?
答案 0 :(得分:7)
这不是绑定问题,你的方法是正确的。由于旧版本的FX,您可能会收到UnsupportedOperationException
。
E.g。下一个示例适用于我使用JavaFX 2.2:
public void start(Stage primaryStage) {
ObservableList<Node> list = FXCollections.<Node>observableArrayList();
VBox root = new VBox();
Bindings.bindContentBidirectional(list, root.getChildren());
list.add(new Button("Test"));
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}