我正在研究一个项目,该项目涉及将窗格(或hbox)(如果效果更好)添加到非常宽的HBox中。我很容易在fxml中设置了它,但是我已经必须做一些这样的事情了,我希望避免所有复制粘贴。所以我认为我应该尝试使用for循环来填充HBox,但是无论出于何种原因它都无法正常工作。我处于起步阶段,因此我的代码非常简单明了。
这是我要重新创建的基本示例
<HBox>
<children>
<Pane fx:id="pane0" prefHeight="200.0" prefWidth="200.0">
<children>
<Button layoutX="71.0" layoutY="95.0" mnemonicParsing="false" text="Button" />
</children></Pane>
<Pane fx:id="pane1" prefHeight="200.0" prefWidth="200.0">
<children>
<Button layoutX="71.0" layoutY="95.0" mnemonicParsing="false" text="Button" />
</children></Pane>
<Pane fx:id="pane2" prefHeight="200.0" prefWidth="200.0">
<children>
<Button layoutX="71.0" layoutY="95.0" mnemonicParsing="false" text="Button" />
</children></Pane>
</children>
</HBox>
因此,为了动态创建它(为了清楚起见),我为HBox和窗格创建了一个类。目前,每个窗格只有一个按钮,但是一旦此代码起作用,它们将进行进一步的自定义。与HBox相同。
这是HBox
public class HBoxTestClass {
@FXML
HBox hBox = new HBox();
public HBoxTestClass(){
}
@FXML
public void initialize(){
populateHBox();
}
private void populateHBox(){
for (int i = 0; i < 3; i++){
hBox.getChildren().add(new TestPane());
hBox.setSpacing(10);
}
}
}
其fxml
<HBox fx:id="hBox" xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="sample.HBoxTestClass"
prefHeight="400.0" prefWidth="600.0">
</HBox>
窗格类及其fxml
public class TestPane extends Pane{
@FXML Pane testPane = new Pane();
@FXML Button button = new Button();
public TestPane(){
}
@FXML
private void initialize(){
button.setText("Click Me!");
}
}
<Pane fx:id="testPane" xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="sample.TestPane"
prefHeight="200.0" prefWidth="200.0">
<children>
<Button fx:id="button" layoutX="71.0" layoutY="95.0" mnemonicParsing="false" text="Button" />
</children>
</Pane>
因此我上面非常简单的代码仅产生一个空白的宽屏,其中没有面板。我在TestPane
类的构造函数中添加了控制台打印,因此我知道它已被调用,但仍然没有任何显示。有什么建议吗?谢谢
答案 0 :(得分:0)
我不确定您在代码中所做的错误。像public partial class error_NotFound : Custom.PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
Response.StatusCode = 404;
}
}
这样的代码应类似于@FXML Pane testPane = new Pane();
。我不确定程序中如何调用@FXML Pane testPane;
之类的代码。尝试遵循此MCVE。
主要
@FXML
public void initialize(){
控制器
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author blj0011
*/
public class JavaFXApplication363 extends Application
{
@Override
public void start(Stage stage) throws Exception
{
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
launch(args);
}
}
FXML
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
import javafx.scene.layout.StackPane;
/**
*
* @author blj0011
*/
public class FXMLDocumentController implements Initializable
{
@FXML
private HBox hBox;
@Override
public void initialize(URL url, ResourceBundle rb)
{
// TODO
for (int i = 0; i < 5; i++) {
StackPane stackPane = new StackPane(new Label("Label: " + i));
hBox.getChildren().add(stackPane);
}
}
}