我使用SwingNode在JavaFx应用程序中嵌入了一个swing应用程序,如下所示:
final SwingNode swingNode = new SwingNode();
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
swingNode.setContent(new ButtonHtml());
}
});
ButtonHtml是一个swing应用程序,如下所示:
public class ButtonHtml extends JPanel
implements ActionListener {
protected JButton b1, b3;
public ButtonHtml() {
ImageIcon buttonIcon = createImageIcon("images/down.gif");
b1 = new JButton("<html><center><b><u>D</u>isable</b><br>"
+ "<font color=#ffffdd>FX button</font>",
buttonIcon);
Font font = b1.getFont().deriveFont(Font.PLAIN);
b1.setFont(font);
b1.setVerticalTextPosition(AbstractButton.CENTER);
b1.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
b1.setMnemonic(KeyEvent.VK_D);
b1.setActionCommand("disable");
b3 = new JButton("<html><center><b><u>E</u>nable</b><br>"
+ "<font color=#ffffdd>FX button</font>",
buttonIcon);
b3.setFont(font);
//Use the default text position of CENTER, TRAILING (RIGHT).
b3.setMnemonic(KeyEvent.VK_E);
b3.setActionCommand("enable");
b3.setEnabled(false);
//Listen for actions on buttons 1 and 3.
b1.addActionListener(this);
b3.addActionListener(this);
b1.setToolTipText("Click this button to disable the FX button.");
b3.setToolTipText("Click this button to enable the FX button.");
//Add Components to this container, using the default FlowLayout.
add(b1);
add(b3);
}
@Override
public void actionPerformed(ActionEvent e) {
if ("disable".equals(e.getActionCommand())) {
Platform.runLater(new Runnable() {
@Override
public void run() {
//close the parent javafx window
}
});
b1.setEnabled(false);
b3.setEnabled(true);
} else {
Platform.runLater(new Runnable() {
@Override
public void run() {
//do something
}
});
b1.setEnabled(true);
b3.setEnabled(false);
}
}
/** Returns an ImageIcon, or null if the path was invalid.
* @param path
* @return */
protected static ImageIcon createImageIcon(String path) {
java.net.URL imgURL = ButtonHtml.class.getResource(path);
if (imgURL != null) {
return new ImageIcon(imgURL);
} else {
System.err.println("Couldn't find file: " + path);
return null;
}
}
}
现在,在我的javafx应用程序中,我已经将SwingNode嵌入到一个窗格中,创建了一个场景,并运行stage.show来打开javafx窗口:
BorderPane pane = new BorderPane();
Image fxButtonIcon = new Image(getClass().getResourceAsStream("images/middle.gif"));
fxbutton = new Button("FX button", new ImageView(fxButtonIcon));
fxbutton.setTooltip(new Tooltip("This middle button does nothing when you click it."));
fxbutton.setStyle("-fx-font: 22 arial; -fx-base: #cce6ff;");
pane.setTop(swingNode);
pane.setCenter(fxbutton);
Scene scene = new Scene(pane, 300, 100);
stage.setScene(scene);
stage.setTitle("Enable FX Button");
stage.show();
我需要知道,我们如何从嵌入式Swing应用程序触发父Javafx窗口的隐藏/处置/关闭。基本上,我想点击一个按钮(在上面的例子中是按钮b1),然后关闭javafx窗口。请注意,swing应用程序和javafx应用程序是独立的。
一个相当干净的方法是在ButtonHtml
类中定义一个字段,表示按下b1
时要做什么。
结合这一点,并使操作侦听器实现现代化,您可以执行以下操作:
public class ButtonHtml extends JPanel {
protected JButton b1, b3;
private Runnable onCloseRequested = () -> {} ;
public void setOnCloseRequested(Runnable onCloseRequested) {
this.onCloseRequested = onCloseRequested ;
}
public Runnable getOnCloseRequested() {
return onCloseRequested ;
}
public ButtonHtml() {
ImageIcon buttonIcon = createImageIcon("images/down.gif");
b1 = new JButton("<html><center><b><u>D</u>isable</b><br>"
+ "<font color=#ffffdd>FX button</font>",
buttonIcon);
Font font = b1.getFont().deriveFont(Font.PLAIN);
b1.setFont(font);
b1.setVerticalTextPosition(AbstractButton.CENTER);
b1.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
b1.setMnemonic(KeyEvent.VK_D);
b1.setActionCommand("disable");
b3 = new JButton("<html><center><b><u>E</u>nable</b><br>"
+ "<font color=#ffffdd>FX button</font>",
buttonIcon);
b3.setFont(font);
//Use the default text position of CENTER, TRAILING (RIGHT).
b3.setMnemonic(KeyEvent.VK_E);
b3.setActionCommand("enable");
b3.setEnabled(false);
//Listen for actions on buttons 1 and 3.
b1.addActionListener(e -> {
Platform.runLater(onCloseRequested);
b1.setEnabled(false);
b3.setEnabled(true);
});
b3.addActionListener(e -> { /* ... */ });
b1.setToolTipText("Click this button to disable the FX button.");
b3.setToolTipText("Click this button to enable the FX button.");
//Add Components to this container, using the default FlowLayout.
add(b1);
add(b3);
}
/** Returns an ImageIcon, or null if the path was invalid.
* @param path
* @return */
protected static ImageIcon createImageIcon(String path) {
java.net.URL imgURL = ButtonHtml.class.getResource(path);
if (imgURL != null) {
return new ImageIcon(imgURL);
} else {
System.err.println("Couldn't find file: " + path);
return null;
}
}
}
然后你就可以做
final SwingNode swingNode = new SwingNode();
SwingUtilities.invokeLater(() -> {
ButtonHtml buttonHtml = new ButtonHtml();
buttonHtml.setOnCloseRequested(() -> swingNode.getScene().getWindow().hide());
swingNode.setContent(buttonHtml);
});
我有一个很大的swing应用程序,我想把javafx嵌入其中。我多次尝试这样做(通过遵循oracle教程等),但只有在声明一个新的JFrame以使用JFXPanel组件时才成功。但是,我不想使用新的框架,我想将我的Javafx代码合并到swing应用程序的根JFrame中。 我们可以将javaFX组件嵌入到JPanel而不是JFrame中吗?如果答案是肯定的,为什么我没有成功?
从零开始建造什么会更快? 我在我的应用程序中使用MVC方法,如果这对我有任何帮助的话。
问题内容: 我正在开发Java Swing应用程序,但也希望将JavaFX与Swing一起使用。是否有任何资源可以告诉您如何执行此操作? 问题答案: 看这里。简而言之,现在可以将JavaFX嵌入到Swing中,并且可以通过JFXPanel支持,但是不支持其他方向。
问题内容: 我想在关闭JavaFX应用程序之前保存文件。 这就是我在中设置处理程序的方式: 当按下按钮时,控制器将调用: 如果关闭窗口,请单击窗口边框上的红色X(正常方式),然后会收到输出消息“ ”,这是所需的行为。 但是,在调用应用程序时,它会在不调用处理程序的情况下关闭(没有输出)。 如何使控制器使用添加到的处理程序? 问题答案: 如果你看一下在生命周期中的类: 每当启动应用程序时,JavaF
我想在关闭JavaFX应用程序之前保存一个文件。 这就是我在中设置处理程序的方法: 以及当按下按钮时调用的控制器: 如何使控制器使用我添加到中的处理程序?
问题内容: 我有一个非常大的程序,当前正在使用SWT。该程序可以在Windows,Mac和Linux上运行,它是一个包含许多元素的大型桌面应用程序。现在SWT有点老了,我想切换到Swing或JavaFX。我想听听您对三件事的想法。 我主要关心的是桌面GUI应用程序会更好吗?(我在网上看过,很多人认为JavaFX与Swing一样好,但是除了简单的见解大战之外,我没有看到很多有效的论点)。它必须在Wi