Create new sensors directly in the application

This commit is contained in:
2023-01-17 08:47:56 +01:00
parent ded77eeb66
commit d715a6fc1e
7 changed files with 127 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TreeView?>
<?import javafx.scene.control.ChoiceBox?>
<BorderPane xmlns:fx="http://javafx.com/fxml" prefHeight="400.0" prefWidth="600.0">
<center>
<SplitPane>
@@ -38,6 +39,11 @@
<TableColumn fx:id="sourceId" text="Id" />
</columns>
</TableView>
<FlowPane>
<TextField fx:id="newName" />
<ChoiceBox fx:id="createType" />
<Button onAction="#onCreateClick">Create</Button>
</FlowPane>
</VBox>
</SplitPane>
</center>