FXMLLoader如何通过FXID访问组件?

时间:2014-11-16 22:27:40

标签: java javafx scenebuilder

我试图弄清楚如何使用JavaFx。 我在Scene Builder中构建了应用程序界面。但我无法访问该组件,因为所有组件都已加载到Parent中。

Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));

如果我改变了#34;父母" on" Pane"我可以访问getChildren(),但如果我知道fx:id ...

我不清楚如何获得控制权

问题更简单。我在Scene Builder中添加了Label或TextField。如果我知道fx:id?

,如何从代码中更改它的文本

我绝望了。

2 个答案:

答案 0 :(得分:10)

您应该为FXML文档创建一个控制器类,您可以在其中执行涉及UI组件所需执行的任何功能。您可以使用@FXML为该类中的字段添加注释,FXMLLoader将填充这些字段,并将fx:id属性与字段名称相匹配。

通过tutorial了解更多详情,并查看Introduction to FXML documentation

简单示例:

Sample.fxml:

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

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

<VBox xmlns:fx="http://javafx.com/fxml/1" fx:controller="SampleController">
    <Label fx:id="countLabel"/>
    <Button fx:id="incrementButton" text="Increment" onAction="#increment"/>
</VBox>

SampleController.java:

import javafx.fxml.FXML;
import javafx.scene.control.Label;


public class SampleController {

    private int count = 0 ;

    @FXML
    private Label countLabel ;

    @FXML
    private void increment() {
        count++;
        countLabel.setText("Count: "+count);
    }
}

SampleMain.java:

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class SampleMain extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception {
        Scene scene = new Scene(FXMLLoader.load(getClass().getResource("Sample.fxml")), 250, 75);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

答案 1 :(得分:6)

可以使用

FXMLLoader.getNamespace(),这是命名组件的映射。

FXMLLoader loader = new FXMLLoader(getClass().getResource("FXMLDocument.fxml"));
Parent root = loader.load();
TextField foo = (TextField)loader.getNamespace().get("exampleFxId");