。pane.getChildren()的addAll();不在javafx场景中工作

时间:2017-07-26 01:15:25

标签: javafx javafx-2 javafx-8 fxml

此代码不允许在我的窗口中绘制线...我在fxml文件中的所有内容都是一个简单的窗格,其中fx:id为hi来测试。没有错误,该行根本不会出现。我也用盒子和圆圈试过这个。我真的需要帮助,这是一个重要的项目。

import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.Pane;
import javafx.scene.shape.Line;
import javafx.scene.Scene;
import javafx.scene.paint.Color;

public class PlotSceneController implements Initializable {

    @FXML
    Pane hi;

    @Override
    public void initialize(URL url, ResourceBundle rb) {

    Line line = new Line(0,0,10,110);
        line.setStroke(Color.BLACK);
        line.setStrokeWidth(10);
        hi.getChildren().addAll(line);

    }

}

FXML文件

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

<?import javafx.scene.shape.*?>
<?import java.lang.*?>
<?import java.net.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>


<Pane fx:id="hi" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-
Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" 
xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<children>

</children>
</Pane>

Main Class,指向另一个页面,其中有一个按钮,指向我遇到问题的页面。

public class Main extends Application {

Stage firstStage;
Scene loginButton;

@Override
public void start(Stage primaryStage) throws Exception {             

    Parent root = FXMLLoader.load(getClass().getResource("Main.fxml"));
    firstStage = primaryStage;                  
    loginButton = new Scene(root, 900, 700);    

    primaryStage.setTitle("Treatment Data");            
    primaryStage.setScene(loginButton);         
    primaryStage.show();                        
}

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {        //Main class
    launch(args);                       //Launches application/window
}

}

1 个答案:

答案 0 :(得分:6)

您错过了设置控制器类PlotSceneController.java。以不同的两种方式设置控制器类,如使用主类setController()方法或在场景生成器屏幕的左下侧控制器窗格中设置控制器类。

使用主要

FXMLLoader loader = new FXMLLoader(getClass().getResource("Main.fxml"));
loader.setController(new PlotSceneController());
Parent root = (Parent) loader.load();

或使用FXML

使用完整的包路径设置Controller类,如下所示

enter image description here