forked from bigolol/disproveJavaDataDepViaKeyAndJoanaGui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddSourceDialog.fxml
14 lines (12 loc) · 927 Bytes
/
AddSourceDialog.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane id="AnchorPane" prefHeight="139.0" prefWidth="369.0" xmlns:fx="http://javafx.com/fxml/1" fx:controller="joanakeygui.AddSourceDialogController">
<children>
<ComboBox fx:id="selectMethodCB" layoutX="14.0" layoutY="14.0" prefHeight="26.0" prefWidth="341.0" promptText="Select by which Method You Want to Select " />
<ComboBox fx:id="selectionCB" layoutX="14.0" layoutY="61.0" prefHeight="26.0" prefWidth="341.0" promptText="Select ..." />
<Button layoutX="14.0" layoutY="99.0" mnemonicParsing="false" prefHeight="26.0" prefWidth="58.0" text="Ok" onAction="#onOk"/>
<Button layoutX="86.0" layoutY="99.0" mnemonicParsing="false" prefHeight="26.0" prefWidth="68.0" text="Cancel" onAction="#onCancel"/>
</children>
</AnchorPane>