FXMLを使用して生成されたアイテムを変更するにはどうすればよいですか?JavaFX ToolBar内で生成されたHBoxの間隔をどのように変更しますか?
JavaFXツールバーを作成すると、ネストされたHBox(またはVBox)が自動的に生成されます。例えば、私は、CSSプロパティ-fx-spacing
を使用して0
<ToolBar fx:id="welcomeToolBar" prefHeight="50">
<items>
<Button fx:id="closeButton" prefHeight="50" prefWidth="100" onAction="#closeWindow" text="Close" />
<Button text="New Image" prefHeight="50" prefWidth="100" onAction="#newImage" styleClass="button-accent"/>
<Pane HBox.hgrow="ALWAYS"/>
<CheckBox text="Hide this window on application start"
fx:id="hideOnLoadCheckBox" onAction="#setVisibilityOnApplicationLoad"/>
</items>
</ToolBar>
独自の 'ToolBar'を実装する必要があるかもしれません。 – Sedrick