-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetailCourseView.fxml
More file actions
81 lines (79 loc) · 3.92 KB
/
detailCourseView.fxml
File metadata and controls
81 lines (79 loc) · 3.92 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<AnchorPane fx:id="root" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="454.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.172-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controller.DetailCourseController">
<children>
<Separator layoutY="88.0" prefHeight="6.0" prefWidth="600.0" />
<Label fx:id="lbl_course_name" alignment="CENTER" contentDisplay="CENTER" layoutX="122.0" layoutY="33.0" prefHeight="35.0" prefWidth="355.0" text="..." textAlignment="CENTER" textFill="WHITE">
<font>
<Font name="System Bold" size="24.0" />
</font>
</Label>
<VBox layoutX="14.0" layoutY="98.0" prefHeight="294.0" prefWidth="240.0">
<children>
<Label prefHeight="30.0" prefWidth="248.0" text="Kategoria" textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label fx:id="lbl_course_category" prefHeight="30.0" prefWidth="265.0" text="..." textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label prefHeight="21.0" prefWidth="274.0" text="Termin" textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label fx:id="lbl_course_date" prefHeight="30.0" prefWidth="260.0" text="..." textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label prefHeight="21.0" prefWidth="255.0" text="Trener" textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label fx:id="lbl_course_trainer" prefHeight="30.0" prefWidth="269.0" text="..." textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label prefHeight="21.0" prefWidth="266.0" text="Liczba uczestników" textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Label fx:id="lbl_course_participants" prefHeight="30.0" prefWidth="254.0" text=".." textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<TextField fx:id="tf_particip_firstname" prefHeight="31.0" prefWidth="172.0" promptText="Dodaj imię" />
<TextField fx:id="tf_particip_lastname" promptText="Dodaj nazwisko" />
</children>
</VBox>
<TableView fx:id="lbl_particip" layoutX="291.0" layoutY="127.0" prefHeight="294.0" prefWidth="274.0">
<columns>
<TableColumn fx:id="col_particip_firstname" prefWidth="137.60003662109375" text="Imię" />
<TableColumn fx:id="col_particip_lastname" prefWidth="136.79998779296875" text="Nazwisko" />
</columns>
</TableView>
<Label alignment="CENTER" layoutX="302.0" layoutY="98.0" prefHeight="18.0" prefWidth="252.0" text="Zapisani uczestnicy kursu" textFill="WHITE">
<font>
<Font size="15.0" />
</font>
</Label>
<Button fx:id="btn_save" layoutX="14.0" layoutY="386.0" mnemonicParsing="false" onAction="#save_participant" prefHeight="46.0" prefWidth="110.0" text="Zapisz" />
<Button fx:id="btn_deleteuser" layoutX="144.0" layoutY="386.0" mnemonicParsing="false" onAction="#delete_participant" prefHeight="46.0" prefWidth="110.0" text="Usuń" />
</children>
</AnchorPane>