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.
|
- <?xml version="1.0" encoding="UTF-8"?>
-
-
- <?import javafx.geometry.Insets?>
- <?import javafx.scene.control.Button?>
- <?import javafx.scene.control.ListView?>
- <?import javafx.scene.layout.*?>
- <VBox xmlns:fx="http://javafx.com/fxml/1" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
- minWidth="-Infinity"
- prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8"
- fx:controller="de.uniluebeck.mi.projmi6.controller.MessageListController">
- <children>
- <ListView fx:id="lvMessages" prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS"/>
- <HBox alignment="CENTER_RIGHT" spacing="5.0" VBox.vgrow="NEVER">
- <children>
- <Button fx:id="btnRemove" cancelButton="true" mnemonicParsing="false" onAction="#clickedRemove"
- text="Entfernen"/>
- <Button fx:id="btnShow" defaultButton="true" mnemonicParsing="false" onAction="#clickedShow"
- text="Zeigen"/>
- </children>
- <VBox.margin>
- <Insets bottom="10.0" left="10.0" right="10.0" top="10.0"/>
- </VBox.margin>
- </HBox>
- </children>
- </VBox>
|