JavaFX在带有控制器的场景构建器中显示视图

时间:2012-09-27 10:17:17

标签: java model-view-controller javafx fxml scenebuilder

我有这个控制器:

package cz.vutbr.feec.bmds.cv2;

import java.awt.Button;
import java.awt.TextField;

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Slider;

public class TestGuiController {

    private int buttonPressed = 0;
    @FXML
    private Button tlacitko;
    @FXML
    private TextField textovePole;
    @FXML
    private Slider slider;

    public void buttonPressed(ActionEvent e) {
        buttonPressed++;
        textovePole.setText(Integer.toString(buttonPressed));
    }
}

这个fxml:

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

<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.BorderPane?>

    <AnchorPane prefHeight="200.0" prefWidth="200.0" xmlns:fx="http://javafx.com/fxml" fx:controller="cz.vutbr.feec.bmds.cv2.TestGuiController">
      <children>
        <Button fx:id="tlacitko" layoutX="30.0" layoutY="40.0" mnemonicParsing="false" onTouchPressed="#buttonPressed" text="Button" />
        <Slider fx:id="slider" layoutX="157.0" layoutY="17.0" orientation="VERTICAL" />
        <TextField fx:id="textovePole" layoutX="14.0" layoutY="89.0" prefWidth="134.0" />
      </children>
    </AnchorPane>

这是我的主要课程:

package cz.vutbr.feec.bmds.cv2;

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

public class Main extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception {
        Parent root = FXMLLoader.load(getClass().getResource("TestGui.fxml"));
        primaryStage.setTitle("Titulek");
        primaryStage.setScene(new Scene(root,300,275));
        primaryStage.show();
    }

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

当我通过ant运行时,我收到错误消息框(运行应用程序时出现异常)。我尝试了没有控制器的简单fxml,它可以工作,所以我猜我做了控制器的错误。为了让它发挥作用我必须改变什么?

2 个答案:

答案 0 :(得分:6)

我必须回答我自己的问题。问题发生在TestGuiController,我使用java.awt.Buttonjava.awt.TextField代替javafx.scene.control.Buttonjavafx.scene.control.TextField

答案 1 :(得分:0)

我不是百分百肯定但是尝试:

    FXML中的
  • :按钮:onAction而不是onTouchPressed

请提供确切的例外消息。