如何在JavaFX中嵌入Piccolo2D画布?

时间:2013-11-22 09:32:25

标签: java swing javafx javafx-8 piccolo

如何在Piccolo2D内嵌入JavaFX画布?

我认为它应该通过SwingNode起作用,因为Piccolo具有名为PCanvasSwing控件。

这种方法适用于Swing:

public static void main(String[] args) {

        PPath ellipse = PPath.createEllipse(100,100,400,200);

        PCanvas canvas = new PCanvas();
        canvas.getLayer().addChild(ellipse);


        JFrame frame = new JFrame();
        frame.setLayout(new BorderLayout());
        frame.add(canvas, BorderLayout.CENTER);


        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(800, 600);
        frame.setLocation(0, 0);
        frame.setTitle("PCanvas_Try01");
        frame.setVisible(true);
    }

但这不适用于JavaFX

@Override
    public void start(Stage stage) throws Exception {

        PPath ellipse = PPath.createEllipse(100, 100, 400, 200);

        PCanvas canvas = new PCanvas();
        canvas.getLayer().addChild(ellipse);

        SwingNode swingNode = new SwingNode();
        swingNode.setContent(canvas);

        Group group = new Group();
        group.getChildren().add(swingNode);

        Scene scene = new Scene(group);

        stage.setTitle("PCanvas_Try02");
        stage.setScene(scene);
        stage.show();

    }

1 个答案:

答案 0 :(得分:0)

Group可能存在一些问题。以下似乎有效:

import edu.umd.cs.piccolo.nodes.PPath;
import edu.umd.cs.piccolo.PCanvas;
import javafx.application.Application;
import javafx.embed.swing.SwingNode;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class DemoPiccoloFx extends Application {

    @Override
    public void start(Stage stage) {
        PPath ellipse = PPath.createEllipse(100, 100, 400, 200);

        PCanvas canvas = new PCanvas();
        canvas.getLayer().addChild(ellipse);

        SwingNode swingNode = new SwingNode();
        swingNode.setContent(canvas);

        StackPane pane = new StackPane();
        pane.getChildren().add(swingNode);
        stage.setScene(new Scene(pane, 500, 300));
        stage.setTitle("PCanvas_Try02");
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

enter image description here