22

我正在研究与 JavaFX 控件混合的 Swing 应用程序。

我创建了一个 JavaFX 控件 ( WebView) 来浏览 HTML 文件。但我想知道,如何在 Swing 的容器上添加这个 Web 视图控件JFrame

4

2 回答 2

31

给定一个已经存在jFrame的 ,下面的代码添加一个新的WebView并加载一个 URL:

// You should execute this part on the Event Dispatch Thread
// because it modifies a Swing component 
JFXPanel jfxPanel = new JFXPanel();
jFrame.add(jfxPanel);

// Creation of scene and future interactions with JFXPanel
// should take place on the JavaFX Application Thread
Platform.runLater(() -> {
    WebView webView = new WebView();
    jfxPanel.setScene(new Scene(webView));
    webView.getEngine().load("http://www.stackoverflow.com/");
});
于 2015-07-28T03:14:10.597 回答
5

JFXPanel允许您在 Swing 应用程序中嵌入 JavaFX。

于 2015-02-09T15:52:07.737 回答