You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
709 B

2 years ago
<?xml version="1.0" encoding="UTF-8"?>
2 years ago
<?import javafx.scene.layout.Pane?>
2 years ago
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Button?>
2 years ago
<?import javafx.scene.control.TextField?>
2 years ago
<?import java.net.URL?>
2 years ago
2 years ago
<Pane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ru.molokoin.MainFrameController">
<children>
<VBox prefHeight="200.0" prefWidth="300.0" >
2 years ago
<Label text="setup the port: " />
2 years ago
<TextField fx:id="portField" promptText="8081" />
2 years ago
<Button fx:id="btn" text="START" onAction="#buttonClicked" />
2 years ago
</VBox>
</children>
</Pane>