我正在研究与 JavaFX 控件混合的 Swing 应用程序。
我创建了一个 JavaFX 控件 ( WebView
) 来浏览 HTML 文件。但我想知道,如何在 Swing 的容器上添加这个 Web 视图控件JFrame
?
给定一个已经存在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/");
});
JFXPanel允许您在 Swing 应用程序中嵌入 JavaFX。