All Classes Namespaces Files Functions Variables
AlertMain.java
Go to the documentation of this file.
1 package dialogs;
2 import javafx.application.Application;
3 import javafx.scene.control.Alert;
4 import javafx.scene.control.Alert.AlertType;
5 import javafx.stage.Stage;
6 
7 
8 @SuppressWarnings("javadoc")
9 public class AlertMain extends Application {
10  @Override
11  public void start(Stage stage) {
12 
13  Alert alert = new Alert(AlertType.INFORMATION);
14  alert.setTitle("Huomautus");
15  alert.setHeaderText(null);
16  alert.setHeight(800);
17  alert.setWidth(100);
18  alert.setX(1000);
19  alert.setContentText("Huomasithan että joulu meni jo! " +
20  "Huomasithan että joulu meni jo! " +
21  "Huomasithan että joulu meni jo! " +
22  "Huomasithan että joulu meni jo! " +
23  "Huomasithan että joulu meni jo! " +
24  "Huomasithan että joulu meni jo! " +
25  "Huomasithan että joulu meni jo! " +
26  "Huomasithan että joulu meni jo! " +
27  "Huomasithan että joulu meni jo! " +
28  "Huomasithan että joulu meni jo! " +
29  "Huomasithan että joulu meni jo! " +
30  "Huomasithan että joulu meni jo! " +
31  "Huomasithan että joulu meni jo! " +
32  "Huomasithan että joulu meni jo! "
33  );
34  // alert.getDialogPane().setStyle(" -fx-max-width:200px; -fx-max-height: 800px; -fx-pref-width: 600px; -fx-pref-height: 300px;");
35  alert.getDialogPane().setPrefHeight(800);
36  alert.getDialogPane().setMaxWidth(200);
37  alert.show();
38  }
39 
40  public static void main(String[] args) { launch(args); }
41 }