Advertisement
Guest User

Untitled

a guest
Feb 4th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 4.37 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.text.*?>
  4. <?import javafx.scene.control.*?>
  5. <?import java.lang.*?>
  6. <?import javafx.scene.layout.*?>
  7. <?import javafx.scene.layout.GridPane?>
  8.  
  9. <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="424.0" prefWidth="626.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.Controller">
  10.   <columnConstraints>
  11.     <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
  12.     <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
  13.   </columnConstraints>
  14.   <rowConstraints>
  15.     <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  16.   </rowConstraints>
  17.    <children>
  18.       <Pane fx:id = "firstPane" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: gray;">
  19.          <children>
  20.             <TextArea fx:id="purPose" layoutY="142.0" prefHeight="282.0" prefWidth="300.0" />
  21.             <Text fill="#ffeaea" layoutY="131.0" strokeType="OUTSIDE" strokeWidth="0.0" text="FormÃ¥l" wrappingWidth="170.248046875">
  22.                <font>
  23.                   <Font name="Tlwg Typo Bold" size="29.0" />
  24.                </font>
  25.             </Text>
  26.             <Separator layoutX="310.0" orientation="VERTICAL" prefHeight="424.0" prefWidth="18.0" />
  27.             <Text fill="#ffeaea" layoutY="27.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Avtalebooker" wrappingWidth="267.248046875">
  28.                <font>
  29.                   <Font name="Tlwg Typo Bold" size="29.0" />
  30.                </font>
  31.             </Text>
  32.          </children>
  33.       </Pane>
  34.       <Pane fx:id = "secondPane" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: gray;" GridPane.columnIndex="1">
  35.          <children>
  36.             <TextField fx:id="room" layoutY="38.0" prefHeight="25.0" prefWidth="199.0" />
  37.             <TextField fx:id="dateFrom" layoutY="101.0" prefHeight="25.0" prefWidth="207.0" />
  38.             <TextField fx:id="dateToo" layoutY="170.0" prefHeight="25.0" prefWidth="207.0" />
  39.             <TextField fx:id="bookingHour" layoutY="241.0" prefHeight="25.0" prefWidth="207.0" />
  40.             <TextField fx:id="EndOfbooking" layoutX="-1.0" layoutY="302.0" prefHeight="25.0" prefWidth="207.0" />
  41.             <TextField fx:id="repeteFrequnze" layoutX="-1.0" layoutY="364.0" prefHeight="25.0" prefWidth="207.0" />
  42.             <Text fill="#ffeaea" layoutY="18.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Rom: " wrappingWidth="199.0">
  43.                <font>
  44.                   <Font name="Tlwg Typo Bold" size="18.0" />
  45.                </font>
  46.             </Text>
  47.             <Text fill="#ffeaea" layoutX="-1.0" layoutY="86.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Fra dato: " wrappingWidth="207.0">
  48.                <font>
  49.                   <Font name="Tlwg Typo Bold" size="18.0" />
  50.                </font>
  51.             </Text>
  52.             <Text fill="#ffeaea" layoutX="-1.0" layoutY="155.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Til dato: " wrappingWidth="207.0">
  53.                <font>
  54.                   <Font name="Tlwg Typo Bold" size="18.0" />
  55.                </font>
  56.             </Text>
  57.             <Text fill="#ffeaea" layoutX="-1.0" layoutY="228.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Tidspunkt: Fra" wrappingWidth="207.0">
  58.                <font>
  59.                   <Font name="Tlwg Typo Bold" size="18.0" />
  60.                </font>
  61.             </Text>
  62.            
  63.             <Text fill="#ffeaea" layoutX="-1.0" layoutY="295.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Tidspunkt: Til" wrappingWidth="207.0">
  64.                <font>
  65.                   <Font name="Tlwg Typo Bold" size="18.0" />
  66.                </font>
  67.             </Text>
  68.             <Text fill="#ffeaea" layoutY="356.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Repetisjonsfrekvens" wrappingWidth="222.248046875">
  69.                <font>
  70.                   <Font name="Tlwg Typo Bold" size="18.0" />
  71.                </font>
  72.             </Text>
  73.             <Button fx:id="submit" layoutX="228.0" layoutY="385.0" mnemonicParsing="false" onAction="#submitButtonAction" prefHeight="38.0" prefWidth="84.0" text="Send">
  74.                <font>
  75.                   <Font name="Tlwg Typo Bold" size="13.0" />
  76.                </font>
  77.             </Button>
  78.          </children>
  79.       </Pane>
  80.    </children>
  81. </GridPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement