-
Notifications
You must be signed in to change notification settings - Fork 0
/
Media.fxml
29 lines (27 loc) · 1.54 KB
/
Media.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxmlapplication1.MediaController">
<children>
<AnchorPane id="AnchorPane" layoutX="10.0" layoutY="10.0" prefHeight="640.0" prefWidth="873.0">
<children>
<TextField alignment="CENTER" editable="false" layoutX="14.0" layoutY="9.0" prefHeight="56.0" prefWidth="378.0" style="-fx-background-color: green; -fx-font-style: green;">
<font>
<Font name="System Bold" size="23.0" />
</font>
</TextField>
<Text fill="WHITE" layoutX="163.0" layoutY="48.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Media">
<font>
<Font name="System Bold" size="28.0" />
</font>
</Text>
<Button layoutX="124.0" layoutY="106.0" mnemonicParsing="false" prefHeight="26.0" prefWidth="152.0" text="Event" />
<Button layoutX="124.0" layoutY="144.0" mnemonicParsing="false" prefHeight="26.0" prefWidth="152.0" text="Latest News" />
<Button layoutX="124.0" layoutY="183.0" mnemonicParsing="false" prefHeight="26.0" prefWidth="152.0" text="Gallary" />
</children>
</AnchorPane>
</children>
</AnchorPane>