web-dev-qa-db-fra.com

Comment charger un fichier fxml dans le volet?

 enter image description here

Si nous avons un Stage alors Scene inclut 2 Panes Le 1er Pane contient Button et le 2nd Pane est vide Pourrions-nous charger un autre fichier fxml dans ce 2nd Pane?

fxml1: VBox
               |_Pane1-->Button
               |_Pane2
///////////////
fxml2: Pane--> Welcome to fxml 2
"when we click the button load the fxml2 inside Pane2 of fxml1"

Puis après clic

 enter image description here


==== J'ai finalement trouvé cela fonctionne après avoir essayé! ==== Merci les gars

@FXML Pane secPane;
public void loadFxml (ActionEvent event) {
Pane newLoadedPane =        FXMLLoader.load(getClass().getResource("/application/fxml2.fxml"));
secPane.getChildren().add(newLoadedPane); 
}  
13
Hussein Saied

J'ai finalement trouvé cela fonctionne après avoir essayé!

@FXML Pane secPane;
public void loadFxml (ActionEvent event)  {
  Pane newLoadedPane =  FXMLLoader.load(getClass().getResource("/application/fxml2.fxml"));
  secPane.getChildren().add(newLoadedPane);
}
9
Hussein Saied

Le simple remplacement du champ dans votre classe de contrôleur ne changera pas le graphe de scène.

secPane est simplement une référence à un nœud dans le graphique de la scène.

Si secPane est simplement un espace réservé, vous pouvez le remplacer dans la liste des enfants du parent:

public void loadFxml (ActionEvent event) {
    // load new pane
    Pane newPane = FXMLLoader.load(getClass().getResource("/application/Login2.fxml"));

    // get children of parent of secPane (the VBox)
    List<Node> parentChildren = ((Pane)secPane.getParent()).getChildren();

    // replace the child that contained the old secPane
    parentChildren.set(parentChildren.indexOf(secPane), newPane);

    // store the new pane in the secPane field to allow replacing it the same way later
    secPane = newPane;
}

Ceci suppose bien sûr que getClass().getResource("/application/Login2.fxml") donne la ressource correcte et ne renvoie pas null (ce qui se produit si aucune ressource portant le nom donné n'est disponible)

4
fabian

Vous pouvez implémenter quelque chose comme ceci:

 public void start(Stage primaryStage) throws IOException {
            primaryStage.setTitle("Title");
            primaryStage.setScene(createScene(loadMainPane("path_of_your_fxml")));
            primaryStage.show();

    }

    private Pane loadMainPane(String path) throws IOException {
        FXMLLoader loader = new FXMLLoader();

        Pane mainPane = (Pane) loader.load(
                getClass().getResourceAsStream(path));

        return mainPane;
    }


    private Scene createScene(Pane mainPane) {
        Scene scene = new Scene(mainPane);
      return scene;
    }

Ensuite, vous pouvez créer un appel de classe séparé Navigation pour stocker tous vos chemins fxml:

public class Navigator {

private final String P1;
private final String P2;
//then you can implement getters...
public String getP1() {
    return P1;
}

public String getP2() {
    return p2;
}

private static FxmlController Controller;

    public static void loadPane(String fxml) {
    try {
        FxmlController.setPane(
                (Node) FXMLLoader.load(Navigator.class.getResource(fxml)));
    } catch (IOException e) {
        e.printStackTrace();
    }
}

public Navigator() throws IOException {
    this.P1 = "p1.fxml";
    this.P2 = "p2.fxml";}

Ensuite, vous pouvez charger votre volet dans votre bouton comme ci-dessous:

@FXML
    private void btnAction(ActionEvent event) throws IOException {
    Navigator.load(new Navigator().getP1());
    ..

.

0
Madushan Perera