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
709 B
18 lines
709 B
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<?import javafx.scene.layout.Pane?> |
|
<?import javafx.scene.control.Label?> |
|
<?import javafx.scene.layout.VBox?> |
|
<?import javafx.scene.control.Button?> |
|
<?import javafx.scene.control.TextField?> |
|
<?import java.net.URL?> |
|
|
|
<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>
|
|
|