Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.geometry.Insets?>
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.ListView?>
  5. <?import javafx.scene.layout.*?>
  6. <VBox xmlns:fx="http://javafx.com/fxml/1" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
  7. minWidth="-Infinity"
  8. prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8"
  9. fx:controller="de.uniluebeck.mi.projmi6.controller.MessageListController">
  10. <children>
  11. <ListView fx:id="lvMessages" prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS"/>
  12. <HBox alignment="CENTER_RIGHT" spacing="5.0" VBox.vgrow="NEVER">
  13. <children>
  14. <Button fx:id="btnRemove" cancelButton="true" mnemonicParsing="false" onAction="#clickedRemove"
  15. text="Entfernen"/>
  16. <Button fx:id="btnShow" defaultButton="true" mnemonicParsing="false" onAction="#clickedShow"
  17. text="Zeigen"/>
  18. </children>
  19. <VBox.margin>
  20. <Insets bottom="10.0" left="10.0" right="10.0" top="10.0"/>
  21. </VBox.margin>
  22. </HBox>
  23. </children>
  24. </VBox>