Advertisement
sahimar

masterListPlayer.fxml

Nov 28th, 2014
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.effect.*?>
  4. <?import javafx.scene.text.*?>
  5. <?import javafx.scene.image.*?>
  6. <?import java.lang.*?>
  7. <?import java.util.*?>
  8. <?import javafx.scene.*?>
  9. <?import javafx.scene.control.*?>
  10. <?import javafx.scene.layout.*?>
  11.  
  12. <AnchorPane id="AnchorPane" prefHeight="570.0" prefWidth="860.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="listplayer.controller.masterListPlayerController">
  13. <children>
  14. <AnchorPane prefHeight="112.0" prefWidth="860.0">
  15. <children>
  16. <ImageView fitHeight="112.0" fitWidth="860.0" pickOnBounds="true" smooth="false">
  17. <image>
  18. <Image url="@../image/header.png" />
  19. </image>
  20. </ImageView>
  21. <Text fill="#eec9c9" layoutX="14.0" layoutY="50.0" strokeType="OUTSIDE" strokeWidth="0.0" text="List Player's 2014">
  22. <font>
  23. <Font name="ACaslonPro-Regular" size="36.0" />
  24. </font>
  25. <effect>
  26. <Reflection bottomOpacity="0.26" topOpacity="0.69" />
  27. </effect>
  28. </Text>
  29. </children>
  30. </AnchorPane>
  31. <TabPane layoutY="111.0" prefHeight="435.0" prefWidth="860.0" tabClosingPolicy="UNAVAILABLE" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="111.0">
  32. <tabs>
  33. <Tab fx:id="tabPlayer" text="Player Name">
  34. <content>
  35. <AnchorPane fx:id="paneLoadPlayer" minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
  36. </content>
  37. </Tab>
  38. <Tab fx:id="tabClub" text="Club Name">
  39. <content>
  40. <AnchorPane fx:id="paneLoadClub" minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
  41. </content>
  42. </Tab>
  43. </tabs>
  44. </TabPane>
  45. </children>
  46. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement