notification.fxml 755 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.scene.layout.HBox?>
  3. <?import javafx.scene.layout.Region?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.Button?>
  6. <?import javafx.scene.layout.VBox?>
  7. <HBox xmlns:fx="http://javafx.com/fxml"
  8. xmlns="http://javafx.com/javafx"
  9. alignment="CENTER"
  10. style="-fx-alignment: center;">
  11. <Region minWidth="40"/>
  12. <Region HBox.hgrow="ALWAYS"/>
  13. <VBox alignment="CENTER" HBox.hgrow="ALWAYS">
  14. <Label fx:id="notificationLabel" styleClass="notification-label" style="-fx-alignment: center;"/>
  15. </VBox>
  16. <Region HBox.hgrow="ALWAYS"/>
  17. <Button fx:id="closeButton" minWidth="40" text="X" style="-fx-background-color: transparent; -fx-text-fill: white; -fx-font-weight: bold;"/>
  18. </HBox>