Advertisement
KarlKorr

inserisci-avvisi.fxml

Feb 22nd, 2023
689
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView?>
  4. <?import java.lang.String?>
  5. <?import javafx.scene.control.Button?>
  6. <?import javafx.scene.control.Label?>
  7. <?import javafx.scene.control.TextArea?>
  8. <?import javafx.scene.control.TextField?>
  9. <?import javafx.scene.layout.AnchorPane?>
  10. <?import javafx.scene.layout.BorderPane?>
  11. <?import javafx.scene.text.Font?>
  12.  
  13.  
  14. <BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="542.0" prefWidth="594.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.ratatouille23.inserisciAvvisi.InserisciAvvisiController">
  15.    <center>
  16.       <AnchorPane prefHeight="690.0" prefWidth="594.0" BorderPane.alignment="CENTER">
  17.          <children>
  18.             <TextField fx:id="oggettoAvviso" layoutX="8.0" layoutY="34.0" prefHeight="26.0" prefWidth="578.0" promptText="Oggetto:" />
  19.             <TextArea fx:id="corpoAvviso" layoutX="12.0" layoutY="96.0" prefHeight="190.0" prefWidth="570.0" promptText="Inserire avviso" />
  20.             <Button fx:id="pulsanteInvia" layoutX="204.0" layoutY="330.0" mnemonicParsing="false" prefHeight="46.0" prefWidth="186.0" stylesheets="@../homepage/homepage.css" text="Button" textFill="WHITE">
  21.                <styleClass>
  22.                   <String fx:value="signout" />
  23.                   <String fx:value="shadow" />
  24.                </styleClass>
  25.             </Button>
  26.          </children>
  27.       </AnchorPane>
  28.    </center>
  29.    <top>
  30.       <AnchorPane prefHeight="126.0" prefWidth="594.0" stylesheets="@../homepage/homepage.css" BorderPane.alignment="CENTER">
  31.          <styleClass>
  32.             <String fx:value="nav-1" />
  33.             <String fx:value="shadow" />
  34.          </styleClass>
  35.          <children>
  36.             <Label layoutX="141.0" layoutY="29.0" text="Inserisci Avvisi" textFill="WHITE">
  37.                <font>
  38.                   <Font name="Tahoma Bold" size="53.0" />
  39.                </font>
  40.             </Label>
  41.             <FontAwesomeIconView fill="WHITE" glyphName="ENVELOPE" layoutX="14.0" layoutY="91.0" size="80" />
  42.             <FontAwesomeIconView fill="WHITE" glyphName="PLUS" layoutX="94.0" layoutY="39.0" size="30" />
  43.          </children>
  44.       </AnchorPane>
  45.    </top>
  46. </BorderPane>
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement