2017-06-21 13 views
0

Tile Propertyをバインドして、幅と高さの値を動的に調整します。しかし、幅と高さはHomeTabCellと同じです。サイズ変更タイルパネルセル

これは動作させる方法ですか、代わりにGridPaneを使用する必要がありますか?

for (int i = 0; i < room.getMaxPlayers(); i++) { 
      try { 
        FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/fxml/HomeTabCell.fxml")); 
        tilePane.getChildren().add(fxmlLoader.load()); 
        tilePane.prefTileWidthProperty().bind(centerRoomHBox.widthProperty().divide(2).subtract(3)); 
        tilePane.prefTileHeightProperty().bind(centerRoomHBox.heightProperty().divide(6/2)); 
        HomeTabCell box = (HomeTabCell) fxmlLoader.getController(); 
        box.setInfo(null, room.getMaxPlayers()); 
      } catch (IOException ex) { 
        bugsnag.notify(ex); 
      } 
} 

答えて

0

私はその後、幅と高さの値をバインドHomeTabCellpublicからanchorPaneをしなければなりませんでした。

for (int i = 0; i < room.getMaxPlayers(); i++) { 
         try { 
           FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/fxml/HomeTabCell.fxml")); 
           tilePane.getChildren().add(fxmlLoader.load()); 
           tilePane.prefTileWidthProperty().bind(centerRoomHBox.widthProperty().divide(2).subtract(3)); 
           tilePane.prefTileHeightProperty().bind(centerRoomHBox.heightProperty().divide(6/2)); 
           HomeTabCell box = (HomeTabCell) fxmlLoader.getController(); 
           box.anchorPane.prefWidthProperty().bind(centerRoomHBox.widthProperty().divide(2).subtract(3)); 
box.anchorPane.prefHeightProperty().bind(centerRoomHBox.heightProperty().divide(6/2)); 
            box.setInfo(null, room.getMaxPlayers()); 
          } catch (IOException ex) { 
            bugsnag.notify(ex); 
          } 
       }