Estructuras_de_Datos/src/cl/cromer/estructuras/fxml/main.fxml

18 lines
700 B
Plaintext
Raw Normal View History

2016-06-20 13:25:01 -04:00
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.ScrollPane?>
2016-06-29 00:33:19 -04:00
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox xmlns:fx="http://javafx.com/fxml/1" prefHeight="768.0" prefWidth="1024.0" spacing="10"
xmlns="http://javafx.com/javafx/8.0.92">
2016-06-20 13:25:01 -04:00
<fx:include source="menu.fxml"/>
<ScrollPane fitToHeight="true" fitToWidth="true" VBox.vgrow="ALWAYS">
<HBox alignment="CENTER" VBox.vgrow="ALWAYS">
<ImageView>
2016-06-29 00:33:19 -04:00
<Image url="@/cl/cromer/estructuras/images/UBBLogo.png"/>
2016-06-20 13:25:01 -04:00
</ImageView>
</HBox>
</ScrollPane>
</VBox>