Created
January 2, 2016 21:50
-
-
Save AnnaBoro/11763c7291f4a6547ef6 to your computer and use it in GitHub Desktop.
JFrame1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package lesson5_8; | |
import javax.swing.*; | |
public class JJFrame { | |
public static void main(String[] args) { | |
JFrame f = new JFrame(); | |
f.setBounds(300, 100, 800, 600); | |
f.setVisible(true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment