-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlertBox.java
More file actions
32 lines (24 loc) · 842 Bytes
/
AlertBox.java
File metadata and controls
32 lines (24 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.company;
import javafx.stage.*;
import javafx.scene.*;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.geometry.*;
public class AlertBox {
public static void display(String title, String message){
Stage window = new Stage();
window.initModality(Modality.APPLICATION_MODAL);
window.setTitle("title");
window.setMinWidth(250);
Label label2 = new Label();
label2.setText(message);
Button closeButton = new Button("Close the window");
closeButton.setOnAction(e -> window.close());
VBox layout3 = new VBox(30);
layout3.getChildren().addAll(label2, closeButton);
layout3.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout3);
window.setScene(scene);
window.showAndWait();
}
}