corefx - added connect dialog to allow connections after initial attempt
This commit is contained in:
parent
24157e7be5
commit
1b728770f1
8 changed files with 110 additions and 40 deletions
16
corefx/src/main/resources/fxml/connect_dialog.fxml
Normal file
16
corefx/src/main/resources/fxml/connect_dialog.fxml
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import com.jfoenix.controls.JFXTextField?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.VBox?>
|
||||
|
||||
<VBox prefWidth="800.0" spacing="10.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<padding>
|
||||
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
||||
</padding>
|
||||
<children>
|
||||
<Label maxWidth="1.7976931348623157E308" text="URL" />
|
||||
<JFXTextField fx:id="urlTextField" />
|
||||
</children>
|
||||
</VBox>
|
|
@ -17,10 +17,15 @@
|
|||
<children>
|
||||
<MenuBar>
|
||||
<menus>
|
||||
<Menu mnemonicParsing="false" text="Main">
|
||||
<items>
|
||||
<MenuItem mnemonicParsing="false" onAction="#onCoreMenuConnect" text="Connection" />
|
||||
</items>
|
||||
</Menu>
|
||||
<Menu mnemonicParsing="false" text="File">
|
||||
<items>
|
||||
<MenuItem mnemonicParsing="false" onAction="#onOpenXmlAction" text="Open XML" />
|
||||
<MenuItem fx:id="saveXmlMenuItem" disable="true" mnemonicParsing="false" onAction="#onSaveXmlAction" text="Save XML" />
|
||||
<MenuItem mnemonicParsing="false" onAction="#onOpenXmlAction" text="Open XML" />
|
||||
</items>
|
||||
</Menu>
|
||||
<Menu mnemonicParsing="false" text="Session">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue