-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.fxml
More file actions
14 lines (13 loc) · 879 Bytes
/
application.fxml
File metadata and controls
14 lines (13 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.text.Font?>
<AnchorPane xmlns="http://javafx.com/javafx/11.0.0" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.aioperator.AIController">
<TextField fx:id="inputField" layoutX="10" layoutY="200" prefWidth="300" promptText="Escribe aquí..." />
<Button fx:id="sendButton" layoutX="320" layoutY="200" prefWidth="80" text="Enviar" />
<Button fx:id="clearButton" layoutX="10" layoutY="240" prefWidth="80" text="Limpiar" />
<Button fx:id="exitButton" layoutX="320" layoutY="240" prefWidth="80" text="Salir" />
<TextArea fx:id="outputArea" layoutX="10" layoutY="10" prefWidth="400" prefHeight="180" editable="false" />
</AnchorPane>