我有一个TabPane FXML文件,当您按下一个按钮时,它会添加一个新的标签,该标签从另一个fxml文件获取其内容。如何将标签的宽度绑定到标签窗格的宽度?
@FXML
private void makeNewTab(ActionEvent event) {
int totalTabs = selectTab.getTabs().size() - 1; // this is the TabPane
Tab newTab = new Tab();
newTab.setText("New tab" + totalTabs);
newTab.setClosable(false);
try{
newTab.setContent(FXMLLoader.load(getClass().getResource("CoreScenes/NewTabSceneFXML.fxml")));
}
catch(IOException e){
System.out.println("Failed to Load 'NewTabSceneFXML.fxml'. Unknown Error.");
}
selectTab.getTabs().add(newTab);
}
按原样添加此选项卡很好,但是它不适合宽度,这正是我所需要的。
编辑1:
这是一个从头开始的示例,可能是因为我正在使用场景构建,但是我不知道。将所有内容的大小设置为计算的大小不是我所需要的。我需要找出如何将子fxml文件的节点绑定到其父fxml文件的节点。因此,当我调整屏幕大小时,所有内容都会调整大小,但是在Scene Builder中似乎不可能。
Does not bind, the stage is too small
When I expand the screen, more of the subtab is revealed
主要FXML:
<TabPane fx:id="mainTab" prefHeight="453.0" prefWidth="499.0" tabClosingPolicy="UNAVAILABLE" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="testtabs.FXMLDocumentController">
<tabs>
<Tab fx:id="ranTab" text="Untitled Tab 1">
<content>
<Button fx:id="button" mnemonicParsing="false" onAction="#handleButtonAction" prefHeight="100.0" prefWidth="115.0" text="Button" />
</content>
</Tab>
</tabs>
</TabPane>
辅助FXML:
<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="testtabs.FXMLTab2Controller">
<children>
<TabPane prefHeight="400.0" prefWidth="600.0" tabClosingPolicy="UNAVAILABLE">
<tabs>
<Tab text="Untitled Tab 1">
<content>
<HBox prefHeight="100.0" prefWidth="200.0">
<children>
<SplitPane prefHeight="200.0" prefWidth="200.0" />
<ScrollPane prefHeight="200.0" prefWidth="200.0">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="200.0" prefWidth="200.0" />
</content>
</ScrollPane>
<ScrollPane prefHeight="200.0" prefWidth="200.0" />
</children>
</HBox>
</content></Tab>
<Tab text="Untitled Tab 2" />
</tabs>
</TabPane>
</children>
</AnchorPane>
答案 0 :(得分:0)
问题是辅助fxml:
AnchorPane
无需指定子项的锚,其行为就像Pane
,即子项的大小已调整为其首选大小,并且无论AnchorPane
大小如何,都保持该大小。
要更改此行为,请在辅助fxml中的TabPane
上指定这些约束:
<TabPane prefHeight="400.0" prefWidth="600.0" tabClosingPolicy="UNAVAILABLE" AnchorPane.leftAnchor="0" AnchorPane.rightAnchor="0" AnchorPane.topAnchor="0" AnchorPane.bottomAnchor="0">
...
</TabPane>
或更简单地使用<TabPane>
作为fxml的根元素:
<TabPane prefHeight="400.0" prefWidth="600.0" tabClosingPolicy="UNAVAILABLE" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="testtabs.FXMLTab2Controller">
...
</TabPane>
注意:作为此HBox
内容的TabPane
不会将子级的大小调整为大于首选宽度的宽度,因为您没有使用{{ 1}}属性,而不是默认值(hgrow
)。您也可以将其修复为例如总是像这样生长NEVER
:
ScrollPane