19 lines
845 B
XML
19 lines
845 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import cn.edu.scau.biubiusuisui.example.mqDemo.TopBarController?>
|
|
<?import javafx.scene.control.TextArea?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<fx:root maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0"
|
|
prefWidth="600.0" type="Pane" xmlns="http://javafx.com/javafx/10.0.2-internal"
|
|
xmlns:fx="http://javafx.com/fxml/1" fx:controller="cn.edu.scau.biubiusuisui.example.mqDemo.MainController">
|
|
<children>
|
|
<VBox prefHeight="400.0" prefWidth="600.0">
|
|
<children>
|
|
<TopBarController/>
|
|
<TextArea fx:id="outTA" editable="false" prefHeight="350.0" prefWidth="600.0" wrapText="true"/>
|
|
</children>
|
|
</VBox>
|
|
</children>
|
|
</fx:root>
|