我的面板@FXML Panel mpanel;
我想在mpanel中添加按钮
Button temp = new Button("Button " + i);
temp.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent e) {
System.out.println("button"+y1);
}
});
mpanel.add(temp);
我在第mpanel.add(temp);
行
答案 0 :(得分:1)
看看这个:https://weblogs.java.net/blog/ixmal/archive/2011/06/02/using-javafx-20-inside-swing-applications看起来你可以用JFXPanel将它添加到Swing,不确定awt。