FXMLLoader 如何通过 FXID 访问组件? [英] FXMLLoader how to access the components by FXID?

查看:26
本文介绍了FXMLLoader 如何通过 FXID 访问组件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在研究如何使用 JavaFx.我在 Scene Builder 中构建了应用程序界面.但是我无法访问该组件,因为所有组件都已加载到父级中.

I'm trying to figure out how to work with JavaFx. I built the application interface in Scene Builder. But I can not get access to the component, since all loaded into the Parent.

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

如果我更改Pane"上的Parent",我可以访问 getChildren(),但是如果我知道 fx:id,我不清楚如何获得控制权...

If I change "Parent" on "Pane" I can get access to the getChildren(), but it is not clear how to get control if i know fx:id...

这个问题更简单.我在 Scene Builder 中添加了 Label 或 TextField.如果我知道 fx:id,如何更改代码中的文本?

The question is even simpler. I added Label or TextField in Scene Builder. How do I change it's text from the code if I know the fx:id?

我很绝望.

推荐答案

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

You should create a controller class for your FXML document, in which you can perform any functionality you need to perform involving the UI components. You can annotate fields in that class with @FXML and they will be populated by the FXMLLoader, matching the fx:id attribute to the field name.

阅读教程了解更多详情,并查看 介绍到 FXML 文档.

Work through the tutorial for more details, and have a look at the Introduction to FXML documentation.

简单例子:

示例.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:

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:

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);
    }
}

这篇关于FXMLLoader 如何通过 FXID 访问组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆