Advertisement
Guest User

Untitled

a guest
Oct 12th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.93 KB | None | 0 0
  1. <BorderPane fx:id="root" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="768.0" prefWidth="1360.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.zweinull.opencsp.client.view.ApplicationWindowController">
  2.    <top>
  3.       <MenuBar fx:id="abc" BorderPane.alignment="CENTER">
  4.         <menus>
  5.           <Menu mnemonicParsing="false" text="Datei">
  6.             <items>
  7.               <MenuItem mnemonicParsing="false" onAction="#exitApplicationAction" text="Beenden" />
  8.             </items>
  9.           </Menu>
  10.         </menus>
  11.       </MenuBar>
  12.    </top>
  13.    <bottom>
  14.       <AnchorPane BorderPane.alignment="CENTER">
  15.          <children>
  16.             <Label layoutX="260.0" layoutY="100.0" text="Loading ..." AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0" AnchorPane.topAnchor="5.0" />
  17.          </children>
  18.       </AnchorPane>
  19.    </bottom>
  20.    <center>
  21.       <SplitPane dividerPositions="0.5" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER">
  22.          <items>
  23.             <AnchorPane minWidth="450.0" prefHeight="200.0" prefWidth="200.0">
  24.                <children>
  25.                   <SplitPane dividerPositions="0.5" layoutX="224.0" layoutY="163.0" orientation="VERTICAL" prefHeight="718.0" prefWidth="676.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  26.                      <items>
  27.                         <AnchorPane id="workbench-anchor" minHeight="200.0" prefHeight="200.0" prefWidth="200.0" />
  28.                         <AnchorPane prefHeight="200.0" prefWidth="200.0" />
  29.                      </items>
  30.                   </SplitPane>
  31.                </children>
  32.             </AnchorPane>
  33.             <AnchorPane id="Menubar" prefHeight="200.0" prefWidth="200.0" />
  34.          </items>
  35.       </SplitPane>
  36.    </center>
  37. </BorderPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement