-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
executable file
·38 lines (32 loc) · 1.23 KB
/
Main.java
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
34
35
36
37
38
package sample;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Alert;
import javafx.scene.control.ButtonType;
import javafx.scene.image.Image;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("MainWindow.fxml"));
primaryStage.setTitle("Assignment 2");
primaryStage.getIcons().add(new Image("/res/Wildcat.png")); // ** HARDCODED
primaryStage.setScene(new Scene(root));
primaryStage.setResizable(false);
primaryStage.setOnCloseRequest(e ->{
e.consume();
Alert alert = new Alert(Alert.AlertType.CONFIRMATION," Sure, you want to exit ?", ButtonType.YES,ButtonType.NO);
alert.setTitle("Are you sure?");
alert.setResizable(false);
alert.showAndWait();
if(alert.getResult() == ButtonType.YES)
primaryStage.close();
});
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}