blob: 09b540474cd40804fd7ed4a7601ec90c1a45dc07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="298.0" prefWidth="586.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.fhswf.in.inf.se.projektthemenvergabe.view.StudentenverwaltungsController">
<center>
<VBox prefHeight="200.0" prefWidth="100.0" BorderPane.alignment="CENTER">
<children>
<TableView fx:id="studentTableView" editable="true" prefHeight="422.0" prefWidth="600.0">
<columns>
<TableColumn fx:id="matrikelnummerTableColumn" prefWidth="75.0" text="Matrikelnummer" />
<TableColumn fx:id="vornameTableColumn" prefWidth="75.0" text="Vorname" />
<TableColumn fx:id="nachnameTableColumn" prefWidth="75.0" text="Nachname" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
<placeholder>
<Label text="Keine Studenten angelegt." />
</placeholder>
</TableView>
<HBox prefHeight="100.0" prefWidth="200.0">
<children>
<Button minWidth="200.0" mnemonicParsing="false" onAction="#handleAddStudent" text="Anlegen" />
<Button fx:id="deleteStudentButton" disable="true" minWidth="200.0" mnemonicParsing="false" onAction="#handleDeleteStudent" text="Löschen">
<HBox.margin>
<Insets left="10.0" />
</HBox.margin>
</Button>
</children>
<VBox.margin>
<Insets top="10.0" />
</VBox.margin>
</HBox>
</children>
</VBox>
</center>
</BorderPane>
|