Как я могу отобразить текст в окне в виде, например:
Направление Лондон, скидка Сеньор
Я плохо знаю JavaFx, поэтому я пытался сделать что-то вроде этого
package sample;
public class Main extends Application {
Stage window;
Scene scene;
Button button;
ComboBox<String> destinationBox, discountBox;
@Override
public void start(Stage primaryStage) throws Exception {
window = primaryStage;
window.setTitle("Tickets");
destinationBox = new ComboBox<>();
destinationBox.getItems().addAll(
"Berlin", "London", "Madrid", "Moscow", "Paris", "Prague", "Rome"
);
discountBox = new ComboBox<>();
discountBox.getItems().addAll(
"Full price", "Senior", "Student"
);
discountBox.setValue("Full price");
destinationBox.setValue("Berlin");
Label label = new Label("Destination " + destinationBox.getValue() + " " + "discount " + discountBox.getValue());
VBox layout = new VBox(10);
layout.setPadding(new Insets(20, 20, 20, 20));
layout.getChildren().addAll(label, discountBox, destinationBox);
scene = new Scene(layout, 300, 250);
window.setScene(scene);
window.show();
}
public static void main(String[] args) {
launch(args);
}
}