mirror of
https://codeberg.org/qg-info-unterricht/zpg-graphentester.git
synced 2026-03-24 20:48:26 +01:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.TreeView?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="400.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
|
|
<children>
|
|
<Label text="Ablauf des Algorithmus">
|
|
<font>
|
|
<Font name="System Bold" size="12.0" />
|
|
</font>
|
|
<VBox.margin>
|
|
<Insets bottom="10.0" top="5.0" />
|
|
</VBox.margin>
|
|
</Label>
|
|
<TreeView fx:id="tvAblauf" prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS" />
|
|
<AnchorPane>
|
|
<children>
|
|
<Button mnemonicParsing="false" onAction="#bCopyClicked" text="In Zwischenablage kopieren" AnchorPane.bottomAnchor="2.0" AnchorPane.rightAnchor="2.0" AnchorPane.topAnchor="2.0" />
|
|
</children>
|
|
</AnchorPane>
|
|
</children>
|
|
<padding>
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
</padding>
|
|
</VBox>
|