-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPasswordDriverFX.java
More file actions
37 lines (28 loc) · 945 Bytes
/
PasswordDriverFX.java
File metadata and controls
37 lines (28 loc) · 945 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
34
35
36
37
import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.RadioButton;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;
import javafx.scene.image.Image;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javax.swing.JFrame;
public class PasswordDriverFX extends Application{
public static void main(String[] args){
launch(args);
}
public void start(Stage stage)
{
//call the main scene which is a BorderPane
PasswordMain mainPane = new PasswordMain();
//PasswordMain root = mainPane.getTopContainer();
Scene scene = new Scene(mainPane, 550, 350);
stage.setScene(scene);
stage.setTitle("Password Checker");
stage.show();
}
}