Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please code in java Create an application called Lab 15 that is extended from JFrame. In the field create: - Two Font objects. Call them
Please code in java
Create an application called Lab 15 that is extended from JFrame. In the field create: - Two Font objects. Call them nameFont and dateFont. Set them to whatever name, style, and size that you wish. Just make sure they are different. - Two Color objects. Call them nameColor and dateColor. In one use the whole number constructor to create a custom color for your name. In the other use the constructor that takes floating point numbers as percentages to create a color for the date. - An instance of the content pane so that you can add components to it. - Create three JLabels one called IbIFName which has your first name in it, one called IbILName that has your last name in it, and one called IbIDate that has the date in it. Create a constructor that will allow you to initialize your application. In it: - Set the application to visible, the size to 300, 300, the title to "First GUI App", and the default close operation to EXIT_ON_CLOSE - Set the layout of the content pane to a GridLayout that is 3 rows by 1 column. - Set the text color and Font to the JLabels that hold you name and date using the Font and Color objects you created. - Add the Jlabels to the content pane. In the order of, First Name, Last Name, Date. When finished your application should look like thisStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started