Explain how you would use JavaFX classes to make your own graphical user interface (GUI) to produce the same GUI that you find in an existing device or software program you already use
Which classes would you use ?
Using JavaFX classes, it is possible to make graphical user interfaces like the ones in the existing user interface. This is achievable by combing several JavaFX classes together. For instance, JavaFX TextField class can be used to create input fields for users to enter their details similar to many existing software program. JavaFX button class can be used to create trigger events and allow users to interact with the software effectively.
Comments
Leave a comment