正如标题中所述,我有fxml文件,我有一个设置了顶部有三个标签/按钮的UI,窗口的下半部分有一个窗格。每次单击标签/按钮时,窗格必须切换到相应的fxml文件。换句话说,窗格必须始终位于相同的位置,有点像标签布局但没有标签。
我知道我可以通过加载fxml文件的新实例来实现这一点但是,我想避免这种情况,因为当用户点击他之前打开的标签时,他应该能够看到他之前的输入。< / p>
我有一些启动程序的main.java。一些controller.java在首次加载时控制UI,以及一些与该初始视图对应的fxml文件。如何实现此转换功能?附:我是JavaFX的新手。
答案 0 :(得分:0)
以下是MCVE如何实现它。
它当然可以使用FXML
:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextArea;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class StageTest extends Application{
private Pane pane1, pane2, mainPane;
@Override
public void start(Stage stage) throws Exception {
stage.setTitle("Switch Panes");
Button button1 = new Button("Show Pane 1");
button1.setOnAction(e -> showPane1());
Button button2 = new Button("Show Pane 2");
button2.setOnAction(e -> showPane2());
HBox buttonsPane = new HBox(5.);
buttonsPane.getChildren().addAll(button1, button2);
pane1 = getPane("PANE ONE");
pane2 = getPane("PANE TWO");
mainPane = new StackPane(pane1);
BorderPane root = new BorderPane();
root.setTop(buttonsPane);
root.setCenter(mainPane);
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
private void showPane1() {
mainPane.getChildren().clear();
mainPane.getChildren().add(pane1);
}
private void showPane2() {
mainPane.getChildren().clear();
mainPane.getChildren().add(pane2);
}
private Pane getPane(String txt) {
VBox pane = new VBox();
pane.getChildren().addAll(new TextArea(txt+" add text here: "));
return pane;
}
public static void main(String[] args) {
launch(args);
}
}