У меня есть границы, написанные на fxml, которые имеют взаимозаменяемые макеты для левой и центральной панели.
borderpane fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.image.*?>
<?import java.net.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.text.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane fx:id="mainBorderPane" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Program.gui.MainSceneController">
<left>
<ScrollPane fitToWidth="true" BorderPane.alignment="CENTER">
<content>
<VBox id="sideMenu" spacing="10.0" styleClass="side-menu">
<children>
<Button fx:id="buttonCash" contentDisplay="TOP" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#buttonCashPress" styleClass="side-menu-button" text="Cash">
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
<graphic>
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../../Libraries/Icons/pos.png" />
</image>
</ImageView>
</graphic></Button>
<Button fx:id="buttonUsers" contentDisplay="TOP" layoutX="10.0" layoutY="10.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#buttonUsersPress" styleClass="side-menu-button" text="Users">
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
<graphic>
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../../Libraries/Icons/users.png" />
</image>
</ImageView>
</graphic></Button>
<Button fx:id="buttonInventory" contentDisplay="TOP" layoutX="10.0" layoutY="35.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#buttonInventoryPress" styleClass="side-menu-button" text="Inventory">
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
<graphic>
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../../Libraries/Icons/inventory.png" />
</image>
</ImageView>
</graphic></Button>
<Button fx:id="buttonCustomers" contentDisplay="TOP" layoutX="10.0" layoutY="60.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#buttonCustomersPress" styleClass="side-menu-button" text="customers">
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
<graphic>
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../../Libraries/Icons/customers.png" />
</image>
</ImageView>
</graphic></Button>
<Button fx:id="buttonLogout" contentDisplay="TOP" layoutX="31.0" layoutY="232.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#buttonLogoutPress" styleClass="side-menu-button" text="Log out">
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
<graphic>
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../../Libraries/Icons/log_out.png" />
</image>
</ImageView>
</graphic>
</Button>
</children>
</VBox>
</content>
<BorderPane.margin>
<Insets />
</BorderPane.margin>
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
</padding>
</ScrollPane>
</left>
<bottom>
<HBox BorderPane.alignment="CENTER">
<children>
<Label fx:id="currentUserLabel" styleClass="current-user-label" text="Current user: name here">
<font>
<Font size="15.0" />
</font>
</Label>
<AnchorPane HBox.hgrow="ALWAYS" />
<Label fx:id="currentTimeLabel" layoutX="10.0" layoutY="10.0" styleClass="current-time-label" text="TIME">
<font>
<Font size="15.0" />
</font>
</Label>
<AnchorPane layoutX="170.0" layoutY="10.0" HBox.hgrow="ALWAYS" />
<Label fx:id="currentDateLabel" layoutX="170.0" layoutY="10.0" styleClass="current-date-label" text="DATE">
<font>
<Font size="15.0" />
</font>
</Label>
</children>
<padding>
<Insets left="10.0" right="10.0" />
</padding>
</HBox>
</bottom>
<stylesheets>
<URL value="@ScreenStylesheet.css" />
</stylesheets>
</BorderPane>
Одна из кнопок, найденных в файле fxml, будет запускать некоторый код в контроллере для изменения правых сторон пограничной панели при помощи VBox, загруженного из другого файла fxml.
Теперь вопрос: как мне указать fxml правой панели использовать тот же контроллер, что и в основной границе? Другими словами, я хочу наследовать контроллер.
Если я определяю контроллер в его fxml с помощью fx:controller="Program.gui.MainSceneController"
, он просто создает новый экземпляр, а если я его не определяю, он просто выдает ошибки, потому что кнопки внутри него не имеют контроллера, на который можно ссылаться.
редактирование:
кто-то спросил код, который меняет правую часть экрана, вот он:
(примечание: это находится в контроллере)
//mainBorderPane is gotten from the main fxml file.
FXMLLoader loader = new FXMLLoader(getClass().getResource("cashRightArea.fxml"));
mainBorderPane.setRight(loader.load());