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.
29 lines
1.0 KiB
29 lines
1.0 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.SplitPane?>
|
|
<?import javafx.scene.control.ListView?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.text.Text?>
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.control.Button?>
|
|
<SplitPane xmlns:fx="http://javafx.com/fxml" prefHeight="400.0" prefWidth="600.0">
|
|
<ListView fx:id="sensorsList" />
|
|
<VBox alignment="TOP_CENTER">
|
|
<padding>
|
|
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0"/>
|
|
</padding>
|
|
<Text fx:id="sensorId" text="Details" />
|
|
<TextField fx:id="sensorName" />
|
|
<BorderPane>
|
|
<left>
|
|
<Button fx:id="changeBtn" onAction="#onChangeClick" visible="false">Change</Button>
|
|
</left>
|
|
<right>
|
|
<Button fx:id="visualizeBtn" onAction="#onVisualizeClick">Visualize</Button>
|
|
</right>
|
|
</BorderPane>
|
|
</VBox>
|
|
</SplitPane>
|