Java Trojan: cross-platform monitoring software.
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.
|
|
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.ScrollPane?> <?import javafx.scene.control.TextField?> <?import javafx.scene.layout.BorderPane?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.text.Font?> <?import javafx.scene.text.TextFlow?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="410.0" prefWidth="360.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="greek.horse.server.ui.controllers.ChatController"> <center> <ScrollPane fx:id="scrollPane" fitToHeight="true" fitToWidth="true" BorderPane.alignment="CENTER"> <content> <TextFlow fx:id="textFlow" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: white;"> <padding> <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> </padding></TextFlow> </content> <BorderPane.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </BorderPane.margin> </ScrollPane> </center> <bottom> <HBox alignment="CENTER" prefHeight="39.0" prefWidth="600.0" BorderPane.alignment="CENTER"> <children> <TextField fx:id="textFieldMessage" alignment="TOP_LEFT" prefHeight="30.0" prefWidth="278.0"> <font> <Font size="14.0" /> </font> <HBox.margin> <Insets right="10.0" /> </HBox.margin> </TextField> <Button mnemonicParsing="false" onAction="#sendBtn" text="Send"> <font> <Font size="14.0" /> </font> </Button> </children> <BorderPane.margin> <Insets bottom="5.0" /> </BorderPane.margin> </HBox> </bottom> </BorderPane>
|