Question: Can anyone help me?(SMALL JAVA PROJECT) Assignment Create a class named App1 which provides a GUI window. Users will enter 24-bit RGB color values and
Can anyone help me?(SMALL JAVA PROJECT)
Assignment
Create a class named App1 which provides a GUI window. Users will enter 24-bit RGB color values and the window will then display them. The application should meet the specifications below:
1) The window will contain an upper panel that holds three text boxes (JTextFields); each text box will have two associated buttons (JButtons).
a) The text boxes will be for red (R), green (G), and blue (B) and should be labeled
b) The values should be initialized to zero for all three text boxes
c) Users can enter values into the text boxes
d) For each text box, one button should allow incrementing and another should allow decrementing the present value, and should be labeled appropriately
e) Any color changes caused by clicking buttons should immediately be shown in the text boxes.
2) The window will contain a lower panel that displays, as its background, the RGB color specified by the values in the upper panels text boxes.
a) Initially the RGB value will be zero
b) Whenever any of the values in the top panels text boxes change, the lower panels background color will immediately update to match it.
3) No error checking is required (i.e., you can assume users will only enter integers), however:
a) Entering a number outside the range 0 to 255 will be treated as entering a zero
b) Clicking a decrement button when the value is zero will have no effect (no drop to -1)
c) Clicking an increment button when the value is 255 will have no effect (no rise to 256)

The graphical interface will look like the one as follows: ?Application 1 Red Green + 10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
