-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheditUIController.fxml
More file actions
22 lines (20 loc) · 1.48 KB
/
editUIController.fxml
File metadata and controls
22 lines (20 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.ToggleButton?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane maxHeight="300.0" maxWidth="600.0" minHeight="300.0" minWidth="600.0" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="RouteMapMaker.editUIController">
<children>
<ListView fx:id="listB" layoutX="198.0" layoutY="36.0" prefHeight="200.0" prefWidth="156.0" />
<ListView fx:id="listC" layoutX="430.0" layoutY="36.0" prefHeight="200.0" prefWidth="156.0" />
<Label layoutX="276.0" layoutY="14.0" text="駅" />
<Label layoutX="489.0" layoutY="14.0" text="停車駅" />
<Button fx:id="Close" layoutX="528.0" layoutY="259.0" mnemonicParsing="false" text="閉じる" />
<ToggleButton fx:id="Insert" layoutX="371.0" layoutY="50.0" mnemonicParsing="false" text="挿入" />
<ToggleButton fx:id="Delete" layoutX="371.0" layoutY="99.0" mnemonicParsing="false" text="削除" />
<ToggleButton fx:id="InsertAll" layoutX="365.0" layoutY="150.0" mnemonicParsing="false" text="全追加" />
<ToggleButton fx:id="DeleteAll" layoutX="365.0" layoutY="199.0" mnemonicParsing="false" text="全削除" />
<Label fx:id="infoLabel" layoutX="14.0" layoutY="50.0" text="停車駅は駅一覧の中から上から" />
</children>
</AnchorPane>