Solved

Import Javax.swing.*; Public Class JFrameLook

Question 35

Essay

import javax.swing.*;
public class JFrameLook
{
public static void main(String[] args)
{
_________________________
JFrame myFrame = new JFrame("Look and Feel");
myFrame.setSize(300, 120);
myFrame.setVisible(true);
}
}
In the shaded line above, write the statement to set the JFrame's look and feel using the setDefaultLookAndFeelDecorated() method.

Correct Answer:

verifed

Verified

JFrame.set...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions