GUI #42 (Windows)

Code

       /// Name: Amir Salehi
    /// Period: 7
    /// Program name: Boring Window
    /// File name: BoringWindow.java
    /// Date: Finished 10/21/2015
import javax.swing.*;

public class BoringWindow extends JFrame
{
    public static void main( String[] args )
    {
        JFrame f = new BoringWindow();
        f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        f.setSize (400, 300);
        f.setVisible (true);
    }
}
    

Picture of the output

Assignment 7

Back to Homepage