2016-06-14 88 views

回答

1

在检查了link中的一些代码之后,我才弄明白了。

<TableView fx:id="tableView" GridPane.columnIndex="0" GridPane.rowIndex="1"> 
    <columns> 
     <TableColumn fx:id="firstNameColumn" text="First Name" prefWidth="100"/> 
     <TableColumn text="Last Name" prefWidth="100"/> 
     <TableColumn text="Email Address" prefWidth="300"> 
      <columns> 
       <TableColumn text ="Primary" prefWidth="150"/> 
       <TableColumn text ="Secondary" prefWidth="150"/> 
      </columns> 
     </TableColumn> 
    </columns> 
</TableView>