|
@@ -0,0 +1,38 @@
|
|
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
+
|
|
|
|
|
+<?import javafx.scene.control.Button?>
|
|
|
|
|
+<?import javafx.scene.control.ScrollPane?>
|
|
|
|
|
+<?import javafx.scene.image.ImageView?>
|
|
|
|
|
+<?import javafx.scene.layout.ColumnConstraints?>
|
|
|
|
|
+<?import javafx.scene.layout.GridPane?>
|
|
|
|
|
+<?import javafx.scene.layout.RowConstraints?>
|
|
|
|
|
+<?import javafx.scene.layout.VBox?>
|
|
|
|
|
+<?import javafx.scene.text.TextFlow?>
|
|
|
|
|
+
|
|
|
|
|
+<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/25">
|
|
|
|
|
+ <columnConstraints>
|
|
|
|
|
+ <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
|
|
|
+ </columnConstraints>
|
|
|
|
|
+ <rowConstraints>
|
|
|
|
|
+ <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
|
+ <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
|
+ <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
|
+ </rowConstraints>
|
|
|
|
|
+ <children>
|
|
|
|
|
+ <ScrollPane>
|
|
|
|
|
+ <content>
|
|
|
|
|
+ <TextFlow />
|
|
|
|
|
+ </content>
|
|
|
|
|
+ </ScrollPane>
|
|
|
|
|
+ <ImageView fitHeight="150.0" fitWidth="200.0" pickOnBounds="true" preserveRatio="true" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER" />
|
|
|
|
|
+ <ScrollPane fitToWidth="true" GridPane.rowIndex="2">
|
|
|
|
|
+ <content>
|
|
|
|
|
+ <VBox>
|
|
|
|
|
+ <children>
|
|
|
|
|
+ <Button maxWidth="1.7976931348623157E308" mnemonicParsing="false" text="Button" />
|
|
|
|
|
+ </children>
|
|
|
|
|
+ </VBox>
|
|
|
|
|
+ </content>
|
|
|
|
|
+ </ScrollPane>
|
|
|
|
|
+ </children>
|
|
|
|
|
+</GridPane>
|