Skip to content

Commit fc62c91

Browse files
author
Rajeev Kumar Singh
committed
Readme.md
1 parent 6f22dc3 commit fc62c91

File tree

10 files changed

+34
-7
lines changed

10 files changed

+34
-7
lines changed

Readme.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
## JavaFX Examples Projects
1+
# JavaFX Examples Projects
2+
Find the tutorials for all the projects at [The CalliCoder Blog](https://www.callicoder.com) -
3+
4+
+ [JavaFX Hello World Tutorial](https://www.callicoder.com/javafx-desktop-application-development-tutorial/)
5+
+ [JavaFX Registration Form GUI Tutorial](https://www.callicoder.com/javafx-registration-form-gui-tutorial/)
6+
+ [JavaFX FXML Tutorial](https://www.callicoder.com/javafx-fxml-form-gui-tutorial/)
7+
+ [JavaFX Built-in Layout Panes Tutorial](https://www.callicoder.com/javafx-built-in-layout-panes-tutorial/)
8+
+ [JavaFX CSS Tutorial](https://www.callicoder.com/javafx-css-tutorial/)
9+
10+

javafx-built-in-layout-pane-examples/src/javafx/example/borderpane/BorderPaneApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class BorderPaneApplication extends Application {
1818
@Override
1919
public void start(Stage primaryStage) throws Exception{
2020
Parent root = FXMLLoader.load(getClass().getResource("layout.fxml"));
21-
primaryStage.setTitle("JavaFX BorderPane Layout Example");
21+
primaryStage.setTitle("JavaFX Built-in Layout Panes Example");
2222
primaryStage.setScene(new Scene(root, 800, 500));
2323
primaryStage.show();
2424
}

javafx-built-in-layout-pane-examples/src/javafx/example/gridpane/GridPaneApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class GridPaneApplication extends Application {
1313
@Override
1414
public void start(Stage primaryStage) throws Exception{
1515
Parent root = FXMLLoader.load(getClass().getResource("layout.fxml"));
16-
primaryStage.setTitle("JavaFX GridPane Layout Example");
16+
primaryStage.setTitle("JavaFX Built-in Layout Panes Example");
1717
primaryStage.setScene(new Scene(root, 600, 340));
1818
primaryStage.show();
1919
}

javafx-built-in-layout-pane-examples/src/javafx/example/hbox/HBoxExampleApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class HBoxExampleApplication extends Application {
1111
@Override
1212
public void start(Stage primaryStage) throws Exception{
1313
Parent root = FXMLLoader.load(getClass().getResource("layout.fxml"));
14-
primaryStage.setTitle("JavaFX HBox Layout Pane Example");
14+
primaryStage.setTitle("JavaFX Built-in Layout Panes Example");
1515
primaryStage.setScene(new Scene(root, 600, 340));
1616
primaryStage.show();
1717
}

javafx-built-in-layout-pane-examples/src/javafx/example/stackpane/StackPaneApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class StackPaneApplication extends Application {
1313
@Override
1414
public void start(Stage primaryStage) throws Exception{
1515
Parent root = FXMLLoader.load(getClass().getResource("layout.fxml"));
16-
primaryStage.setTitle("JavaFX StackPane Layout Example");
16+
primaryStage.setTitle("JavaFX Built-in Layout Panes Example");
1717
primaryStage.setScene(new Scene(root, 600, 340));
1818
primaryStage.show();
1919
}

javafx-built-in-layout-pane-examples/src/javafx/example/vbox/VBoxExampleApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class VBoxExampleApplication extends Application {
1111
@Override
1212
public void start(Stage primaryStage) throws Exception{
1313
Parent root = FXMLLoader.load(getClass().getResource("layout.fxml"));
14-
primaryStage.setTitle("VBox Layout Pane Example Application");
14+
primaryStage.setTitle("JavaFX Built-in Layout Panes Example");
1515
primaryStage.setScene(new Scene(root, 600, 340));
1616
primaryStage.show();
1717
}

javafx-css-demo-app/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
JavaFX CSS Demo Example
1+
# JavaFX CSS Example

javafx-hello-world/Readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
## JavaFX Hello World Example with Lifecycle Methods
22

33
The Project contains a Simple JavaFX Hello World example with implementation of all the lifecycle methods.
4+
45
Compile and run `HelloWorldApplication.java` for running the program.
6+
7+
## Tutorial
8+
9+
You can find the tutorial for this application on my blog -
10+
11+
<https://www.callicoder.com/javafx-css-tutorial/>

javafx-registration-form-application/Readme.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@
22

33
The Project explains how to create a Registration form in JavaFX.
44
Compile and run `RegistrationFormApplication.java` for running the program.
5+
6+
## Tutorial
7+
8+
Checkout the following tutorial for this application -
9+
10+
<https://www.callicoder.com/javafx-registration-form-gui-tutorial/>

javafx-registration-form-fxml/Readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@
33
The Project explains how to create a Registration form in JavaFX using FXML.
44
Clone the Project, Import it into your favorite IDE and run `RegistrationFormApplication.java` for running the program.
55

6+
## Tutorial
7+
8+
Learn about the details of the application from the following tutorial -
9+
10+
<https://www.callicoder.com/javafx-fxml-form-gui-tutorial/>

0 commit comments

Comments
 (0)