No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mainWindow.fxml 1.8KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import com.jfoenix.controls.JFXDrawer?>
  3. <?import com.jfoenix.controls.JFXHamburger?>
  4. <?import com.jfoenix.controls.JFXListView?>
  5. <?import javafx.scene.control.Label?>
  6. <?import javafx.scene.effect.Shadow?>
  7. <?import javafx.scene.layout.AnchorPane?>
  8. <?import javafx.scene.text.Font?>
  9. <AnchorPane id="rootPane" fx:id="rootPane" maxHeight="400.0" maxWidth="600.0" minHeight="400.0" minWidth="600.0" prefHeight="400.0" prefWidth="600.0" stylesheets="@../stylesheets/mainWindowStyle.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.insa.clav.UIControllers.MainWindowController">
  10. <children>
  11. <JFXHamburger fx:id="mainHamburger" layoutX="14.0" layoutY="21.0" onMouseClicked="#clickMainHamburgerHandler">
  12. <effect>
  13. <Shadow color="#b103ff" height="0.0" radius="0.0" width="0.0" />
  14. </effect></JFXHamburger>
  15. <JFXDrawer fx:id="mainDrawer" defaultDrawerSize="120.0" direction="RIGHT" layoutX="460.0" prefHeight="400.0" prefWidth="150.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="460.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
  16. <JFXListView fx:id="userListView" depth="10" layoutX="40.0" layoutY="96.0" prefHeight="304.0" prefWidth="200.0" style="-fx-background-color: a1c3f7;" verticalGap="1.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="40.0" AnchorPane.rightAnchor="360.0" AnchorPane.topAnchor="96.0" />
  17. <Label fx:id="mainLabel" layoutX="74.0" layoutY="16.0" prefHeight="30.0" prefWidth="302.0" style="-fx-font-weight: bold;" text="Welcome, please choose a pseudo" textAlignment="CENTER" textFill="#ed0e7f" wrapText="true">
  18. <font>
  19. <Font name="Ubuntu" size="17.0" />
  20. </font></Label>
  21. </children>
  22. </AnchorPane>