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

34 lines
1.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import cl.cromer.estructuras.TextFieldLimited?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.Text?>
<VBox xmlns:fx="http://javafx.com/fxml/1" prefHeight="768.0" prefWidth="1024.0" spacing="10"
xmlns="http://javafx.com/javafx/8.0.92" fx:controller="cl.cromer.estructuras.TablaHashController">
<fx:include source="menu.fxml"/>
<ScrollPane fitToHeight="true" fitToWidth="true" VBox.vgrow="ALWAYS">
<HBox alignment="TOP_CENTER" VBox.vgrow="ALWAYS" spacing="50">
<VBox spacing="10">
<HBox alignment="CENTER" spacing="10">
<Button text="%llenar" onAction="#botonLlenar"/>
<Button text="%vaciar" onAction="#botonVaciar"/>
</HBox>
<HBox alignment="CENTER" spacing="10">
<Button text="%insertar" onAction="#botonInsertar"/>
<Button text="%eliminar" onAction="#botonEliminar"/>
<Button text="%buscar" onAction="#botonBuscar"/>
<Text text="%llave"/>
<TextFieldLimited fx:id="llaveHashTable" maxLength="10" prefWidth="100"/>
<Text text="%valor"/>
<TextFieldLimited fx:id="valorHashTable" maxLength="3" prefWidth="50"/>
</HBox>
<VBox fx:id="contenidoHashTable" alignment="CENTER"/>
</VBox>
<StackPane alignment="TOP_LEFT" minWidth="450">
<Text fx:id="codigoHashTable"/>
</StackPane>
</HBox>
</ScrollPane>
</VBox>