COMP 274 Week 3 Lab Java Application GUI
Just Click on Below Link To Download This Course:
https://bit.ly/3bpNLIZ
COMP 274 Week 3 Lab Java Application GUI
Create Java programs for the following two problems:
- Write a Java application to display the following GUI. At this
point you are only implementing the display. We are not ready to make the
calculator actually do any calculations!This program has the following requirements:
- The size of the calculator is 250 x 250 pixels.
- The background and foreground color of the calculator buttons must
alternate in a checker board pattern as shown above. You can choose any
pair of colors for your foreground and background colors.
- The buttons should have at least 5 pixels of space between them.
- The text on the buttons should be SanSerif size 16 and be bold.
- Your application should be implemented in a single class. The main
method of the class does nothing more than create an object of the class.
The constructor of the class creates and displays the GUI. The
constructor may call other methods of the class if needed.
- The class must inherit from JFrame as the following
demonstrates:
|
|
- Write a Java application to
display the following GUI. At this point you are only implementing the
display.This program has the following requirements:
- The textfield should accommodate 3 characters.
- The X and Y labels should be next to the
corresponding textfields.
Hint:
- Put each label and its adjacent text field into a panel, then put
both panels into another panel.
- The buttons should have 10 pixels horizontal spacing and 5 pixels
vertical spacing.
- For the layout of the JFrame, use FlowLayout( FlowLayout.CENTER,
10, 5).
- Your application should be implemented in a single class. The main
method of the class does nothing more than create an object of the class.
The constructor of the class creates and displays the GUI. The constructor
may call other methods of the class if needed.
- Do not use inheritance for this program. Use a
JFrame member variable as the main window object for this program.
Take screen shots of the output of programs 1 & 2.
Paste the screen shots and your source code for your programs into a Word
document.
Please place things in the following order:
- Screen shot of problem 1.
- Code for probem 1.
- Screen shot of problem 2.
- Code for problem 2.


Comments
Post a Comment