From 85ffd4bfcf45f7c18f9bb21568d1a2a00fb5cef6 Mon Sep 17 00:00:00 2001 From: Rohan Bansal <36248672+Rohan-Bansal@users.noreply.github.com> Date: Thu, 27 Jun 2019 19:12:57 -0700 Subject: [PATCH] Detailed examples of controls (#28949) To add interest, I extended the description of controls to encompass the things you can do with JavaFX. --- guide/english/java/javafx/index.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/guide/english/java/javafx/index.md b/guide/english/java/javafx/index.md index 7d7a978354..c2eda1d1a2 100644 --- a/guide/english/java/javafx/index.md +++ b/guide/english/java/javafx/index.md @@ -30,7 +30,27 @@ ControlsFX is an open source project that maintains high quality controls for Ja Next to common controls like text fields and labels, there are also advanced features that can upgrade the look and feel of the UI. For example, a collection of pre-built dialogs used for the easy creation of custom dialogs. Documentation can be found on the website. +### Examples + +- Label +- Button +- Color Picker +- Checkbox +- RadioButton +- Listview +- Textfield +- PasswordField +- Scrollbar +- FileChooser +- ProgressBar +- Slider + +And more, link in references. + ### References: + +[Controls Documentation](https://www.tutorialspoint.com/javafx/javafx_ui_controls.htm) + [FXML Documentation](https://docs.oracle.com/javase/8/javafx/api/javafx/fxml/doc-files/introduction_to_fxml.html) [Scene Builder Tutorial](https://docs.oracle.com/javase/8/scene-builder-2/get-started-tutorial/overview.htm#JSBGS164)