2014-10-29 96 views
2

我试图调整舞台最大化为与默认舞台大小相同的比例时在锚板中调整两个表的大小。当舞台最大化时调整TableView的大小

现在我有:

http://i.imgur.com/Z6Lywhr.png

但当最大化它们之间有一个很大的空间:

http://i.imgur.com/NZa5wY0.png

我一直在寻找,我发现答案相似问题说,包装在网格面板,但即使我不能这样做:

JavaFX tableview resize to fit window

有人知道这里缺少什么吗?

代码FXML:

<AnchorPane styleClass="backgroundColor" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="solverassistant.FXMLCompareController"> 
    <children> 
     <AnchorPane prefHeight="270" prefWidth="190.0" styleClass="filterPane" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="40.0"> 
      <children> 
       <Label id="filterLabel" fx:id="filterLabel" alignment="CENTER" prefHeight="17.0" prefWidth="150.0" text="Filter" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="10.0" /> 
       <TextField id="filterTextField" fx:id="filterTextField" alignment="CENTER" layoutY="20.0" prefWidth="150.0" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="30.0" /> 
       <Label id="filterByLabel" fx:id="filterByLabel" alignment="CENTER" prefHeight="17.0" prefWidth="150.0" text="Filter by:" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="70.0" /> 
       <CheckBox id="solverCheckBox" fx:id="solverCheckBox" layoutY="90.0" selected="true" text="Solver" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="100.0" /> 
       <CheckBox id="benchmarkCheckBox" fx:id="benchmarkCheckBox" layoutY="110.0" selected="true" text="Benchmark" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="120.0" /> 
       <CheckBox id="typeCheckBox" fx:id="typeCheckBox" layoutY="130.0" selected="true" text="Solver type" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="140.0" /> 
       <CheckBox id="timeOutCheckBox" fx:id="timeOutCheckBox" layoutY="150.0" selected="true" text="Time out" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="160.0" /> 
       <CheckBox id="memoryCheckBox" fx:id="memoryCheckBox" layoutY="170.0" selected="true" text="Memory" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="180.0" /> 
       <CheckBox id="coresCheckBox" fx:id="coresCheckBox" layoutY="190.0" selected="true" text="Number of cores" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="200.0" /> 
       <CheckBox id="wholeWordCheckBox" fx:id="wholeWordCheckBox" layoutY="190.0" selected="false" text="Whole word" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="220.0" /> 
      </children> 
     </AnchorPane> 
     <Button id="reloadButton" fx:id="reloadButton" onAction="#resetAndReloadSolvers" prefHeight="25.0" prefWidth="190.0" styleClass="button-defaultButton" text="Reset and reload data" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="320.0" /> 
     <Button id="compareButton" fx:id="compareButton" disable="true" prefHeight="25.0" prefWidth="150.0" styleClass="button-defaultButton" text="Compare" AnchorPane.bottomAnchor="50.0" AnchorPane.leftAnchor="40.0" /> 
     <TableView id="allSolversTable" fx:id="allSolversTable" minHeight="-Infinity" prefHeight="175.0" prefWidth="922.0" AnchorPane.leftAnchor="245.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="40.0"> 
      <columnResizePolicy> 
       <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" /> 
      </columnResizePolicy> 
      <columns> 
       <TableColumn fx:id="colAllSelect" prefWidth="25.0" /> 
       <TableColumn fx:id="colAllSolver" prefWidth="75.0" text="Solver" /> 
       <TableColumn fx:id="colAllBenchmark" prefWidth="75.0" text="Benchmark" /> 
       <TableColumn fx:id="colAllSolverType" prefWidth="75.0" text="Solver type" /> 
       <TableColumn fx:id="colAllTimeOut" prefWidth="75.0" text="Time out" /> 
       <TableColumn fx:id="colAllMemory" prefWidth="75.0" text="Memory" /> 
       <TableColumn fx:id="colAllNumberOfCores" prefWidth="75.0" text="Number of cores" /> 
      </columns> 
     </TableView> 
     <TableView id="selectedSolversTable" fx:id="selectedSolversTable" minHeight="-Infinity" prefHeight="175.0" prefWidth="922.0" AnchorPane.bottomAnchor="50.0" AnchorPane.leftAnchor="245.0" AnchorPane.rightAnchor="0.0"> 
      <columnResizePolicy> 
       <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" /> 
      </columnResizePolicy> 
      <columns> 
       <TableColumn fx:id="colSelectedSolver" prefWidth="75.0" text="Solver" /> 
       <TableColumn fx:id="colSelectedBenchmark" prefWidth="75.0" text="Benchmark" /> 
       <TableColumn fx:id="colSelectedSolverType" prefWidth="75.0" text="Solver type" /> 
       <TableColumn fx:id="colSelectedTimeOut" prefWidth="75.0" text="Time out" /> 
       <TableColumn fx:id="colSelectedMemory" prefWidth="75.0" text="Memory" /> 
       <TableColumn fx:id="colSelectedNumberOfCores" prefWidth="75.0" text="Number of cores" /> 
      </columns> 
     </TableView> 
    </children> 
</AnchorPane> 

所有项目:github.com/danielcasanovas/SolverAssistant

回答

1

你可以做的仅仅是包装在VBox两个表一个容易的事情,让第一台具有垂直成长优先级设置为ALWAYS,并在所有min/pref/max大小字段中设置USE_COMPUTE_SIZE。第二个表格可以是原样(因此只有第一个表格会被调整大小)。

这是FXML文件的患部:

<VBox spacing="40.0" AnchorPane.bottomAnchor="40.0" AnchorPane.leftAnchor="245.0" AnchorPane.rightAnchor="40.0" AnchorPane.topAnchor="40.0"> 
    <children> 
      <TableView id="allSolversTable" fx:id="allSolversTable" VBox.vgrow="ALWAYS"> 
       <columnResizePolicy> 
        <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" /> 
       </columnResizePolicy> 
       <columns> 
        <TableColumn fx:id="colAllSelect" prefWidth="25.0" /> 
        <TableColumn fx:id="colAllSolver" prefWidth="75.0" text="Solver" /> 
        <TableColumn fx:id="colAllBenchmark" prefWidth="75.0" text="Benchmark" /> 
        <TableColumn fx:id="colAllSolverType" prefWidth="75.0" text="Solver type" /> 
        <TableColumn fx:id="colAllTimeOut" prefWidth="75.0" text="Time out" /> 
        <TableColumn fx:id="colAllMemory" prefWidth="75.0" text="Memory" /> 
        <TableColumn fx:id="colAllNumberOfCores" prefWidth="75.0" text="Number of cores" /> 
       </columns> 
      </TableView> 
      <TableView id="selectedSolversTable" fx:id="selectedSolversTable" prefHeight="175.0"> 
       <columnResizePolicy> 
        <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" /> 
       </columnResizePolicy> 
       <columns> 
        <TableColumn fx:id="colSelectedSolver" prefWidth="75.0" text="Solver" /> 
        <TableColumn fx:id="colSelectedBenchmark" prefWidth="75.0" text="Benchmark" /> 
        <TableColumn fx:id="colSelectedSolverType" prefWidth="75.0" text="Solver type" /> 
        <TableColumn fx:id="colSelectedTimeOut" prefWidth="75.0" text="Time out" /> 
        <TableColumn fx:id="colSelectedMemory" prefWidth="75.0" text="Memory" /> 
        <TableColumn fx:id="colSelectedNumberOfCores" prefWidth="75.0" text="Number of cores" /> 
       </columns> 
      </TableView> 
    </children> 
    </VBox> 

,而无需在主FXML文件进一步变化,表应适当应用程序的任何大小调整后调整。

+0

一个小问题的完美和简单的解决方案,谢谢! – 2014-10-29 13:35:23

+0

对于布局问题,通常'VBox'和'HBox'派上用场。你的项目目前看起来非常好。 – 2014-10-29 13:39:03

+0

我会做的,非常感谢。有可能长大一切吗?像HBox中的标签? – 2014-10-29 17:27:10

相关问题