gpt4 book ai didi

java - TabPane 中的按钮使用 JavaFX

转载 作者:行者123 更新时间:2023-11-30 06:08:51 27 4
gpt4 key购买 nike

JavaFX 8 中是否有一种方法可以将按钮放入 TabPane 中,如下面的模型所示?如果可能的话,我只想使用 FXML 文件。 mockup

最佳答案

看完“Add Buttons to Tabs and Tab area JavaFX”的问题和答案后,不难适应它与 FXML 文件一起工作。

<AnchorPane prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="mypackage.Controller">
<children>
<TabPane tabClosingPolicy="UNAVAILABLE" AnchorPane.topAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.bottomAnchor="0.0">
<tabs>
/* the code for the tabs goes here */
</tabs>
</TabPane>
<HBox AnchorPane.topAnchor="1.0" AnchorPane.rightAnchor="5.0">
<children>
<Button text="Export..." />
<Button text="Generate" />
</children>
</HBox>
</children>
</AnchorPane>

结果如下图所示。

enter image description here

关于java - TabPane 中的按钮使用 JavaFX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39205244/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com