Detailed examples of controls (#28949)

To add interest, I extended the description of controls to encompass the things you can do with JavaFX.
This commit is contained in:
Rohan Bansal
2019-06-27 19:12:57 -07:00
committed by Randell Dawson
parent 7790535664
commit 85ffd4bfcf

View File

@ -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)