Advertisement
Guest User

Untitled

a guest
May 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.TextField?>
  6. <?import javafx.scene.layout.ColumnConstraints?>
  7. <?import javafx.scene.layout.GridPane?>
  8. <?import javafx.scene.layout.Pane?>
  9. <?import javafx.scene.layout.RowConstraints?>
  10. <?import javafx.scene.text.Font?>
  11.  
  12. <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="444.0" prefWidth="639.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.inso.sepm.ticketline.client.gui.customer.EditCustomerController">
  13.     <children>
  14.       <Label id="lb_idValue" layoutX="218.0" layoutY="54.0" />
  15.       <Label id="lb_header" layoutX="132.0" layoutY="54.0" prefHeight="17.0" prefWidth="289.0" />
  16.       <GridPane layoutX="83.0" layoutY="65.0" prefHeight="315.0" prefWidth="443.0">
  17.         <columnConstraints>
  18.           <ColumnConstraints hgrow="SOMETIMES" maxWidth="240.0" minWidth="10.0" prefWidth="156.0" />
  19.           <ColumnConstraints hgrow="SOMETIMES" maxWidth="339.0" minWidth="10.0" prefWidth="333.0" />
  20.         </columnConstraints>
  21.         <rowConstraints>
  22.           <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  23.           <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  24.             <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  25.           <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  26.             <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  27.             <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  28.         </rowConstraints>
  29.          <children>
  30.               <Label id="lb_lastName" fx:id="lb_firstName" text="%customer.overview.firstname" GridPane.halignment="CENTER" />
  31.               <TextField id="tf_lastName" fx:id="tf_description" prefHeight="27.0" prefWidth="196.0" GridPane.columnIndex="1" />
  32.             <Label id="lb_firstName" fx:id="lb_lastName" text="%customer.overview.lastname" GridPane.halignment="CENTER" GridPane.rowIndex="1" />
  33.             <TextField id="tf_firstName" fx:id="tf_street" prefHeight="27.0" prefWidth="196.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
  34.             <Label id="lb_plz" fx:id="lb_mail" text="%customer.overview.mail" GridPane.halignment="CENTER" GridPane.rowIndex="3" />
  35.             <TextField id="tf_email" fx:id="tf_nation" prefHeight="27.0" prefWidth="196.0" GridPane.columnIndex="1" GridPane.rowIndex="3" />
  36.             <Button fx:id="btn_save" mnemonicParsing="false" onAction="#onSaveButtonClicked" prefHeight="46.0" prefWidth="216.0" text="%btn.save" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="5" />
  37.             <Button fx:id="btn_cancel" mnemonicParsing="false" onAction="#onCancelButtonClicked" prefHeight="43.0" prefWidth="99.0" text="%btn.cancel" GridPane.halignment="CENTER" GridPane.rowIndex="5" GridPane.valignment="CENTER" />
  38.             <TextField fx:id="tf_city" GridPane.columnIndex="1" GridPane.rowIndex="2" />
  39.             <TextField fx:id="tf_plz" GridPane.columnIndex="1" GridPane.rowIndex="4" />
  40.             <Label text="City" GridPane.rowIndex="2" />
  41.             <Label text="Plz" GridPane.rowIndex="4" />
  42.          </children>
  43.       </GridPane>
  44.       <Label fx:id="lb_titel" layoutX="30.0" layoutY="14.0" prefHeight="49.0" prefWidth="391.0" text="%customer.edit.title.create" underline="true">
  45.          <font>
  46.             <Font name="System Bold" size="26.0" />
  47.          </font>
  48.       </Label>
  49.     </children>
  50. </Pane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement