Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+5 votes

I believe that with these libraries, work will be much more easier

asked in CSC305 Fall 2019 by (1 point)

3 Answers

0 votes

In Dr. Mohd's email on November 16th he states,

–Only JavaFX should be used no AWT or Swings

answered by (1 point)
0 votes

Even javafx has libraries. However, it's hard to use and especially in this case, a calendar is even harder.

answered by (1 point)
0 votes

Java FX is Swing’s younger, more limber cousin. FX behaves as a GUI library and lends itself to efficient and rapid development of desktop apps. Java FX has a modern design and provides developers with easy access to Rich Internet Application. Java coders who are used to working with Swing find the transition to FX to be largely painless, and the scripts they can write using it allow them to quickly and easily rewrite their UI components.

JavaFX uses a theater metaphor to address top-level application containers. In FX, the scene graph collects the UI elements, including layouts, controls, shapes, and groups. The elements are referred to as nodes, and each one has automatically available features that the developer can readily access. And FX also has special effects that you can easily add to create blurs, shadows, and other textural touch-ups.

answered by (1 point)
...