BestelluebersichtMitarbeiter Maske (nicht fertig)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package de.subway_surfers.vpr_app;
|
||||
|
||||
import javafx.collections.FXCollections;
|
||||
import javafx.collections.ObservableList;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.control.ListView;
|
||||
import javafx.scene.control.ScrollPane;
|
||||
import javafx.scene.layout.AnchorPane;
|
||||
|
||||
public class BestelluebersichtMitarbeiter {
|
||||
@FXML
|
||||
private ListView listViewBestellMitarbeiter;
|
||||
public void initialize(){
|
||||
|
||||
ScrollPane scrollPane = new ScrollPane();
|
||||
|
||||
scrollPane.hbarPolicyProperty().setValue(ScrollPane.ScrollBarPolicy.NEVER);
|
||||
scrollPane.vbarPolicyProperty().setValue(ScrollPane.ScrollBarPolicy.ALWAYS);
|
||||
scrollPane.setContent(listViewBestellMitarbeiter);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user