-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMessageBox.java
More file actions
33 lines (26 loc) · 853 Bytes
/
MessageBox.java
File metadata and controls
33 lines (26 loc) · 853 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
33
package project_A;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;
public class MessageBox {
public void display(String title, String message ) {
Stage window = new Stage();
window.initModality(Modality.APPLICATION_MODAL);
window.setTitle(title);
window.setMinWidth(20);
Label label = new Label(message);
Button button = new Button("close");
button.setOnAction(e-> window.close());
VBox layout = new VBox(10);
layout.getChildren().addAll(label,button);
layout.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout,300,200);
window.setScene(scene);
window.setResizable(false);
window.showAndWait();
}
}