到目前为止,我一直在根元素中从fxml
文件中设置控制器:
fx:controller = "control.MainController"
我有一个带有2个标签的窗口,每个标签都有按钮,表格和其他元素......为了保持我的项目整洁有序且易于阅读/维护我想分开FirstTabController
和SecondTabController
中的控制器代码。怎么做?
我可以使用两个不同的文件作为同一个fxml
文件的控制器类吗?
答案 0 :(得分:2)
查看JavaFX TabPane - One controller for each tab - 您应该使用fx:include
代码。
Main.java(假设所有文件都在sample
包中)
package sample;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.io.IOException;
public class Main extends Application {
public void start(Stage stage) {
Parent root = null;
try {
root = FXMLLoader.load(getClass().getResource("sample.fxml"));
} catch (IOException e) {
e.printStackTrace();
}
Scene scene = new Scene(root, 300, 275);
stage.setTitle("FXML Welcome");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch();
}
}
sample.fxml
<?import javafx.scene.control.TabPane?>
<?import javafx.scene.control.Tab?>
<TabPane xmlns:fx="http://javafx.com/fxml">
<Tab text="Tab 1">
<content>
<fx:include source="tab1.fxml"/>
</content>
</Tab>
<Tab text="Tab 2">
<content>
<fx:include source="tab2.fxml"/>
</content>
</Tab>
</TabPane>
tab1.fxml
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.control.Label?>
<StackPane xmlns:fx="http://javafx.com/fxml" fx:controller="sample.TabOneController">
<Label text="Tab 1"/>
</StackPane>
tab2.fxml
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.control.Label?>
<StackPane xmlns:fx="http://javafx.com/fxml" fx:controller="sample.TabTwoController">
<Label text="Tab 2"/>
</StackPane>
使用fx:include
标记添加的FXML文件是单独的文件,可以有单独的控制器。