forked from rishikavk-08/Library_Management_System_DBMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ShowMember.fxml
77 lines (75 loc) · 4.62 KB
/
ShowMember.fxml
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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="467.0" prefWidth="701.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.ShowMemberController">
<center>
<AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER">
<children>
<SplitPane dividerPositions="0.5" orientation="VERTICAL" prefHeight="405.6" prefWidth="701.6" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<items>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0">
<children>
<TableView fx:id="table" prefHeight="199.2" prefWidth="700.8" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<columns>
<TableColumn fx:id="id" minWidth="-Infinity" prefWidth="75.0" style="-fx-background-color: #20b2aa;" text="Member_ID" />
<TableColumn fx:id="first" minWidth="-Infinity" prefWidth="85.0" style="-fx-background-color: #70e2e4;" text="First Name" />
<TableColumn fx:id="last" minWidth="-Infinity" prefWidth="85.0" style="-fx-background-color: #20B2AA;" text="Last Name" />
<TableColumn fx:id="address" minWidth="-Infinity" style="-fx-background-color: #70e2e4;" text="Address" />
<TableColumn fx:id="phone" prefWidth="90.0" style="-fx-background-color: #20B2AA;" text="Phone Number" />
<TableColumn fx:id="email" minWidth="-Infinity" prefWidth="120.0" style="-fx-background-color: #70e2e4;" text="Email-ID" />
<TableColumn fx:id="username" prefWidth="75.0" style="-fx-background-color: #20B2AA;" text="Username" />
<TableColumn fx:id="password" prefWidth="75.0" style="-fx-background-color: #70e2e4;" text="Password" />
</columns>
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
</padding>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
</children>
</AnchorPane>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0">
<children>
<Button fx:id="Back" layoutX="276.0" layoutY="76.0" mnemonicParsing="false" onAction="#Backclicked" prefHeight="39.0" prefWidth="147.0" style="-fx-background-color: #20B2AA;" text="Go back">
<graphic>
<ImageView fitHeight="39.0" fitWidth="43.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../Resources/Back-Icon-PNG-Image-200x200.png" />
</image>
</ImageView>
</graphic>
</Button>
</children>
</AnchorPane>
</items>
</SplitPane>
</children>
</AnchorPane>
</center>
<top>
<AnchorPane prefHeight="61.0" prefWidth="702.0" style="-fx-background-color: #20B2AA;" BorderPane.alignment="CENTER">
<children>
<Text layoutX="90.0" layoutY="40.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Member Details">
<font>
<Font size="23.0" />
</font>
</Text>
<ImageView fitHeight="61.0" fitWidth="62.0" layoutX="14.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../Resources/983470-200.png" />
</image>
</ImageView>
</children>
</AnchorPane>
</top>
</BorderPane>