samu_masken #7

Merged
PBG2H22AWO merged 5 commits from samu_masken into master 2023-12-14 08:59:58 +01:00
2 changed files with 46 additions and 0 deletions
Showing only changes of commit e8d29f851c - Show all commits

View File

@ -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;
}

View File

@ -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>