javafx 复制当前节点到另一个节点的函数
javafx copy function of current node to another node
我想通过单击存在的原始按钮来创建一个新按钮,如下代码所示。现在我希望新按钮具有与当前按钮相同的功能。当我点击新按钮时,它也会创建新按钮。如果原来的按钮有更多的功能,新的按钮也可以有这些功能。
Button btn = new Button("Original Button");
VBox root = new VBox();
root.getChildren().add(btn);
btn.setOnMouseClicked(e->{
root.getChildren().add(new Button("New button"));
});
来自@fabian 建议的代码:
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
/**
*
* @author Sedrick
*/
public class JavaFXApplication11 extends Application {
@Override
public void start(Stage primaryStage) {
VBox vbox = new VBox();
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Button oldButton = (Button)event.getSource();
Button newButton = new Button("new Button");
vbox.getChildren().add(newButton);
newButton.setOnAction(oldButton.getOnAction());
}
});
vbox.getChildren().add(btn);
StackPane root = new StackPane();
root.getChildren().add(vbox);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
我想通过单击存在的原始按钮来创建一个新按钮,如下代码所示。现在我希望新按钮具有与当前按钮相同的功能。当我点击新按钮时,它也会创建新按钮。如果原来的按钮有更多的功能,新的按钮也可以有这些功能。
Button btn = new Button("Original Button");
VBox root = new VBox();
root.getChildren().add(btn);
btn.setOnMouseClicked(e->{
root.getChildren().add(new Button("New button"));
});
来自@fabian 建议的代码:
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
/**
*
* @author Sedrick
*/
public class JavaFXApplication11 extends Application {
@Override
public void start(Stage primaryStage) {
VBox vbox = new VBox();
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Button oldButton = (Button)event.getSource();
Button newButton = new Button("new Button");
vbox.getChildren().add(newButton);
newButton.setOnAction(oldButton.getOnAction());
}
});
vbox.getChildren().add(btn);
StackPane root = new StackPane();
root.getChildren().add(vbox);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}