将窗格添加到 HBox 的更有效方法?
More efficient way to add Panes to an HBox?
我正在从事一个项目,该项目将涉及向非常宽的 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 和窗格创建了一个 class。现在每个窗格只有一个按钮,但是一旦此代码起作用,它们将进行进一步的自定义。与 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>
窗格 class 及其 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
class 的构造函数中放置了一个控制台打印,所以我知道它被调用但仍然没有出现。有什么建议吗?谢谢
我不确定您在代码中做错了什么。像 @FXML Pane testPane = new Pane();
这样的代码应该看起来像 @FXML Pane testPane;
。我不确定在您的程序中如何调用 @FXML
public void initialize(){
之类的代码。尝试关注这个 MCVE。
Main
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);
}
}
Controller
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);
}
}
}
FXML
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.HBox?>
<HBox fx:id="hBox" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication363.FXMLDocumentController" />
我正在从事一个项目,该项目将涉及向非常宽的 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 和窗格创建了一个 class。现在每个窗格只有一个按钮,但是一旦此代码起作用,它们将进行进一步的自定义。与 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>
窗格 class 及其 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
class 的构造函数中放置了一个控制台打印,所以我知道它被调用但仍然没有出现。有什么建议吗?谢谢
我不确定您在代码中做错了什么。像 @FXML Pane testPane = new Pane();
这样的代码应该看起来像 @FXML Pane testPane;
。我不确定在您的程序中如何调用 @FXML
public void initialize(){
之类的代码。尝试关注这个 MCVE。
Main
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);
}
}
Controller
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);
}
}
}
FXML
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.HBox?>
<HBox fx:id="hBox" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication363.FXMLDocumentController" />