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.

18 lines
682 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
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" >
<Label text="setup the port: "/>
<TextField fx:id="portField" promptText="8081" />
<Button fx:id="btn" text="START" onAction="#buttonClicked"/>
</VBox>
</children>
</Pane>