Advertisement
Guest User

fxml

a guest
Aug 27th, 2014
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.29 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.web.*?>
  4. <?import javafx.geometry.*?>
  5. <?import javafx.scene.control.*?>
  6. <?import java.lang.*?>
  7. <?import javafx.scene.layout.*?>
  8.  
  9. <BorderPane id="bp0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="1280.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
  10.    <top>
  11.       <MenuBar BorderPane.alignment="CENTER">
  12.         <menus>
  13.           <Menu mnemonicParsing="false" text="New">
  14.             <items>
  15.               <MenuItem mnemonicParsing="false" text="Add" />
  16.             </items>
  17.           </Menu>
  18.           <Menu mnemonicParsing="false" text="Help">
  19.             <items>
  20.               <MenuItem mnemonicParsing="false" text="About" />
  21.             </items>
  22.           </Menu>
  23.         </menus>
  24.          <opaqueInsets>
  25.             <Insets />
  26.          </opaqueInsets>
  27.       </MenuBar>
  28.    </top>
  29.    <center>
  30.       <BorderPane id="bp1" BorderPane.alignment="CENTER">
  31.          <top>
  32.             <ToolBar BorderPane.alignment="CENTER">
  33.               <items>
  34.                 <Button mnemonicParsing="false" text="+" />
  35.               </items>
  36.             </ToolBar>
  37.          </top>
  38.          <center>
  39.             <BorderPane id="bp2" BorderPane.alignment="CENTER">
  40.                <center>
  41.                   <SplitPane id="sp0" dividerPositions="0.3" BorderPane.alignment="CENTER">
  42.                     <items>
  43.                       <AnchorPane id="ap0" maxWidth="400.0" minHeight="0.0" minWidth="200.0">
  44.                            <children>
  45.                               <BorderPane id="bp3" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  46.                                  <center>
  47.                                     <SplitPane id="sp1" dividerPositions="0.6" orientation="VERTICAL" BorderPane.alignment="CENTER">
  48.                                       <items>
  49.                                         <AnchorPane id="ap1" minHeight="200.0" minWidth="0.0">
  50.                                              <children>
  51.                                                 <TitledPane id="tp0" animated="false" collapsible="false" layoutX="14.0" text="Connections" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  52.                                                    <content>
  53.                                                       <TreeView id="treevw" />
  54.                                                    </content></TitledPane>
  55.                                              </children>
  56.                                           </AnchorPane>
  57.                                         <AnchorPane id="ap2" minHeight="200.0" minWidth="0.0">
  58.                                              <children>
  59.                                                 <TitledPane id="tp1" animated="false" collapsible="false" layoutX="49.0" layoutY="14.0" text="Details" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  60.                                                    <content>
  61.                                                       <TableView>
  62.                                                         <columns>
  63.                                                           <TableColumn editable="false" prefWidth="75.0" sortable="false" text="C1" />
  64.                                                           <TableColumn editable="false" prefWidth="75.0" sortable="false" text="C2" />
  65.                                                         </columns>
  66.                                                          <columnResizePolicy>
  67.                                                             <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
  68.                                                          </columnResizePolicy>
  69.                                                       </TableView>
  70.                                                    </content></TitledPane>
  71.                                              </children>
  72.                                           </AnchorPane>
  73.                                       </items>
  74.                                     </SplitPane>
  75.                                  </center>
  76.                               </BorderPane>
  77.                            </children>
  78.                         </AnchorPane>
  79.                       <AnchorPane id="ap3" minHeight="0.0" minWidth="0.0">
  80.                            <children>
  81.                               <TabPane layoutX="57.0" layoutY="129.0" tabClosingPolicy="ALL_TABS" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  82.                                 <tabs>
  83.                                   <Tab text="Welcome" />
  84.                                 </tabs>
  85.                               </TabPane>
  86.                            </children>
  87.                         </AnchorPane>
  88.                     </items>
  89.                   </SplitPane>
  90.                </center>
  91.             </BorderPane>
  92.          </center>
  93.       </BorderPane>
  94.    </center>
  95.    <bottom>
  96.       <VBox alignment="BOTTOM_LEFT" maxHeight="20.0" minHeight="20.0" BorderPane.alignment="CENTER" />
  97.    </bottom>
  98. </BorderPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement