You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.2 KiB
23 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<?import java.lang.*?> |
|
<?import java.util.*?> |
|
<?import javafx.scene.*?> |
|
<?import javafx.scene.control.*?> |
|
<?import javafx.scene.layout.*?> |
|
|
|
<AnchorPane id="AnchorPane" prefHeight="800" prefWidth="1150" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxtableexampledist.FXMLEducationController"> |
|
<children> |
|
<TableView fx:id="table" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> |
|
<columns> |
|
<TableColumn fx:id="idCol" prefWidth="100" text="ИД" /> |
|
<TableColumn fx:id="universityCol" prefWidth="400" text="Университет" /> |
|
<TableColumn fx:id="dateCol" prefWidth="200" text="Дата" /> |
|
<TableColumn fx:id="cityCol" prefWidth="150" text="Город" /> |
|
<TableColumn fx:id="idpersonCol" prefWidth="300" text="Персона" /> |
|
</columns> |
|
</TableView> |
|
<!-- <Button layoutX="126" layoutY="90" text="Click Me!" onAction="#handleButtonAction" fx:id="button" /> |
|
<Label layoutX="126" layoutY="120" minHeight="16" minWidth="69" fx:id="label" />--> |
|
</children> |
|
</AnchorPane>
|
|
|