Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.layout.VBox?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.Button?>
  6. <?import javafx.geometry.Insets?>
  7.  
  8. <VBox alignment="CENTER" spacing="20.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.mycompany.wozfxml.PrimaryController">
  9. <children>
  10. <Label text="Primary View" />
  11. <Button fx:id="primaryButton" text="Switch to Secondary View" onAction="#switchToSecondary"/>
  12. </children>
  13. <padding>
  14. <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
  15. </padding>
  16. </VBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement