Inhaltsstoffe-Filtern View+Controller
This commit is contained in:
parent
7f4fde9f4a
commit
e8d29f851c
@ -0,0 +1,21 @@
|
|||||||
|
// Programmiert von Samuel Wolff
|
||||||
|
// Noch nicht getestet
|
||||||
|
|
||||||
|
package de.subway_surfers.vpr_app;
|
||||||
|
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.scene.control.Button;
|
||||||
|
import javafx.scene.control.CheckBox;
|
||||||
|
import javafx.scene.control.ListView;
|
||||||
|
|
||||||
|
public class InhaltsstoffeFilternController {
|
||||||
|
|
||||||
|
private @FXML ListView zutatListView;
|
||||||
|
|
||||||
|
private @FXML CheckBox speichernCheckbox;
|
||||||
|
|
||||||
|
private @FXML Button abbrechenButton;
|
||||||
|
|
||||||
|
private @FXML Button fortfahrenButton;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- Programmiert von Samuel Wolff
|
||||||
|
Noch nicht getestet -->
|
||||||
|
|
||||||
|
<?import java.lang.*?>
|
||||||
|
<?import java.util.*?>
|
||||||
|
<?import javafx.scene.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<VBox xmlns="http://javafx.com/javafx"
|
||||||
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
|
fx:controller="de.subway_surfers.vpr_app.InhaltsstoffeFilternController"
|
||||||
|
prefHeight="400.0" prefWidth="600.0">
|
||||||
|
|
||||||
|
<Label text="Nach Inhaltsstoffen filtern" />
|
||||||
|
<ListView fx:id="zutatListView"/>
|
||||||
|
|
||||||
|
<HBox>
|
||||||
|
<CheckBox fx:id="speichernCheckBox" text="Auswahl für KindA speichern "/>
|
||||||
|
<Button fx:id="abbrechenButton" text="Abbrechen" />
|
||||||
|
<Button fx:id="fortfahrenButton" text="Fortfahren" />
|
||||||
|
</HBox>
|
||||||
|
</VBox>
|
Loading…
Reference in New Issue
Block a user