mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-11 00:22:54 -04:00
13 lines
892 B
XML
13 lines
892 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
|
<StackPane fx:id="rootContainer" minHeight="300" minWidth="400" prefHeight="600" prefWidth="800"
|
|
stylesheets="/io/bitsquare/gui/global.css" xmlns:fx="http://javafx.com/fxml/1"
|
|
xmlns="http://javafx.com/javafx/8" fx:controller="io.bitsquare.gui.MainController">
|
|
<AnchorPane fx:id="anchorPane" id="root-pane" minHeight="300" minWidth="400" prefHeight="600" prefWidth="800">
|
|
<HBox fx:id="leftNavPane" spacing="10" AnchorPane.leftAnchor="0" AnchorPane.topAnchor="0"/>
|
|
<HBox fx:id="rightNavPane" spacing="10" AnchorPane.rightAnchor="10" AnchorPane.topAnchor="0"/>
|
|
<AnchorPane fx:id="contentPane" id="content-pane" AnchorPane.bottomAnchor="20" AnchorPane.leftAnchor="0"
|
|
AnchorPane.rightAnchor="0" AnchorPane.topAnchor="60"/>
|
|
</AnchorPane>
|
|
</StackPane>
|