53 righe
2,7 KiB
XML
53 righe
2,7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.ScrollPane?>
|
|
<?import javafx.scene.control.TextArea?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.text.Font?>
|
|
<?import javafx.scene.text.Text?>
|
|
|
|
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="chatapp.View.View_Utilisateurs">
|
|
<children>
|
|
<VBox prefHeight="400.0" prefWidth="600.0">
|
|
<children>
|
|
<HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0" style="-fx-background-color: #3299a8;">
|
|
<children>
|
|
<Text fill="#b0c926" strokeType="OUTSIDE" strokeWidth="0.0" text="Qui est là?">
|
|
<font>
|
|
<Font name="OCR A Extended" size="48.0" />
|
|
</font>
|
|
</Text>
|
|
</children>
|
|
</HBox>
|
|
<HBox alignment="CENTER" prefHeight="304.0" prefWidth="600.0" style="-fx-background-color: #3299a8;">
|
|
<children>
|
|
<ScrollPane prefHeight="282.0" prefWidth="202.0">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="267.0" prefWidth="200.0">
|
|
<children>
|
|
<TextArea fx:id="ListeUtilisateurs" layoutY="12.0" prefHeight="267.2" prefWidth="200.0" style="-fx-background-color: #3299a8;" text="Aucun utilisateur actif" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<font>
|
|
<Font name="OCR A Extended" size="13.0" />
|
|
</font>
|
|
</TextArea>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</ScrollPane>
|
|
</children>
|
|
</HBox>
|
|
<HBox alignment="BOTTOM_RIGHT" layoutX="10.0" layoutY="10.0" prefHeight="63.0" prefWidth="600.0" style="-fx-background-color: #3299a8;">
|
|
<children>
|
|
<Button fx:id="MenuButton" alignment="CENTER" mnemonicParsing="false" style="-fx-background-color: #b0c926;" onAction="#retourMenu" text="Retour au menu" textFill="WHITE">
|
|
<font>
|
|
<Font name="OCR A Extended" size="18.0" />
|
|
</font>
|
|
</Button>
|
|
</children></HBox>
|
|
</children>
|
|
</VBox>
|
|
</children>
|
|
</AnchorPane>
|