私はJavaFXコントロールと混合したSwingアプリケーションに取り組んでいます。
HTMLファイルを参照するためのJavaFXコントロール(WebView
)を作成しました。しかし、知りたいのですが、このWebビューコントロールをSwing 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 を使用すると、JavaアプリケーションをSwingアプリケーションに埋め込むことができます。