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.

25 lines
618 B

<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.GridPane?>
<GridPane xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" >
<VBox style="-fx-padding: 10;">
<HBox>
<VBox style="-fx-padding: 10;">
<TextField promptText="hello"/>
</VBox>
<VBox style="-fx-padding: 10;">
<TextField promptText="hello"/>
</VBox>
</HBox>
<Button text="Click me!" style="-fx-margin: 10;width:100%;" />
</VBox>
</GridPane>