forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
66 lines (51 loc) · 1.93 KB
/
Main.java
File metadata and controls
66 lines (51 loc) · 1.93 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
public class Main extends Application {
Stage window;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
window = primaryStage;
window.setTitle("thenewboston - JavaFX");
//GridPane with 10px padding around edge
GridPane grid = new GridPane();
grid.setPadding(new Insets(10, 10, 10, 10));
grid.setVgap(8);
grid.setHgap(10);
//Name Label - constrains use (child, column, row)
Label nameLabel = new Label("Username:");
nameLabel.setId("bold-label");
GridPane.setConstraints(nameLabel, 0, 0);
//Name Input
TextField nameInput = new TextField("Bucky");
GridPane.setConstraints(nameInput, 1, 0);
//Password Label
Label passLabel = new Label("Password:");
GridPane.setConstraints(passLabel, 0, 1);
//Password Input
TextField passInput = new TextField();
passInput.setPromptText("password");
GridPane.setConstraints(passInput, 1, 1);
//Login
Button loginButton = new Button("Log In");
GridPane.setConstraints(loginButton, 1, 2);
//Sign up
Button signUpButton = new Button("Sign Up");
signUpButton.getStyleClass().add("button-blue");
GridPane.setConstraints(signUpButton, 1, 3);
//Add everything to grid
grid.getChildren().addAll(nameLabel, nameInput, passLabel, passInput, loginButton, signUpButton);
Scene scene = new Scene(grid, 300, 200);
scene.getStylesheets().add("Viper.css");
window.setScene(scene);
window.show();
}
}