1

我需要从 stackPane 复制图像,然后需要在 ClipBoard 的帮助下将该特定图像添加到另一个 stackpane。

4

1 回答 1

1

您可以使用 SnapshotParameters 和 ImageView 来做到这一点:

...
SnapshotParameters snapParams = new SnapshotParameters();
snapParams.setFill(Color.RED); // see documentation
// with your describtion YOURNODE is your stackpane...
imageview.setImage(YOURNODE.snapshot(snapParams, null));

现在您可以使用以下命令将 imageview 添加到另一个堆栈窗格:

otherStackpane.getChildren().add(imageview); 
于 2013-05-27T15:05:57.623 回答