mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-03-13 21:05:22 +03:00
27 lines
976 B
XML
27 lines
976 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.TextArea?>
|
|
<?import java.net.URL?>
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
|
|
<!-- DrLeonardo Design -->
|
|
|
|
<Pane fx:id="overlay" prefHeight="450.0" prefWidth="693.0" xmlns="http://javafx.com/javafx/8.0.201"
|
|
xmlns:fx="http://javafx.com/fxml/1">
|
|
<stylesheets>
|
|
<URL value="@debug.css"/>
|
|
<URL value="@../../styles.css"/>
|
|
</stylesheets>
|
|
|
|
<!-- Debug controls -->
|
|
<TextArea fx:id="output" prefHeight="450.0" prefWidth="693.0">
|
|
<padding>
|
|
<Insets left="10.0" right="10.0"/>
|
|
</padding>
|
|
</TextArea>
|
|
<Button fx:id="copy" defaultButton="true" layoutX="373.0" layoutY="415.0" prefHeight="30.0" prefWidth="100.0"
|
|
text="Копировать"/>
|
|
<Button fx:id="action" layoutX="533.0" layoutY="415.0" prefHeight="25.0" prefWidth="150.0" text="Убить"/>
|
|
</Pane>
|