Repeat Programming Project 8 in Chapter 1, but add yes-or-no dialogs to allow the user to make the following color changes:

• Change the color of the solid center circle from black to red.
• Change the color of the outer circle from black to blue.
• Change the color of the spines from black to green.

This project is an enhancement of a similar project from Chapter 1. This JavaFX program uses dialog windows and selection to change the appearance of the image drawn by the program. Use setStroke to set the line color and setFill to set the fill color.

See the code in Icon.java.

Computer Science & Information Technology

You might also like to view...

With a ________ delete, if a record on the one side of the relationship is deleted, all of the related records on the many side will be deleted

A) cascading B) foreign C) primary D) junction

Computer Science & Information Technology

Which statement would be used to declare and initialize a string variable named zipCode?

A. string zipCode = ""; B. zipCode = ""; C. init zipCode = ""; D. declare zipCode = "";

Computer Science & Information Technology