将Text设置为另一个场景中的标签(JavaFX)

时间:2016-03-24 18:44:09

标签: java javafx

有一个场景,其中有一个标签和一个按钮设置在Action上。当按下按钮时,下一个场景加载,在下一个场景中有一个标签,需要在第一个标签上显示文字。这可能是一个复杂的传递参数JavaFX FXML,但我不能接受它,如果你可以抽出一些时间来帮忙,请写下如何更改代码

第一场景Fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>

<AnchorPane prefHeight="177.0" prefWidth="325.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.controller">
 <children>
  <Button fx:id="btn1" layoutX="128.0" layoutY="126.0" mnemonicParsing="false" onAction="#button23" text="Button" />
  <Label fx:id="lbl1" layoutX="108.0" layoutY="65.0" text="Example" />
 </children>
</AnchorPane>

第二场景Fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>


<AnchorPane prefHeight="158.0" prefWidth="196.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.65">
   <children>
  <Label fx:id="lbl2" layoutX="57.0" layoutY="71.0" prefHeight="17.0" prefWidth="105.0" text="Label" />
  </children>
</AnchorPane>

按钮控制器代码

public class controller {
    @FXML
    private Label lbl1,lbl2;
    @FXML
    private Button btn1;
    static String a = "";

    public void button23(ActionEvent event) throws Exception{

        a=lbl1.getText();
        lbl2.setText(a);
        Parent root = FXMLLoader.load(getClass().getResource("/application/2.fxml"));
        //BorderPane root = new BorderPane();
        Scene scene = new Scene(root,400,400);
        scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
        Stage stage = new Stage();
        stage.setScene(scene);
        stage.show();

    }

}

第二类控制器

public class SecCon {
    public Label lbl2;`enter code here`
    public void labelDis(ActionEvent event){;

    }
}

0 个答案:

没有答案