Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import javax.swing.*;
- public class SecondSimple {
- public static void main (String args[]) {
- new MyFrame();
- }
- }
- class MyFrame extends JFrame {
- public MyFrame() {
- setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- setSize(300,200);
- setLocation(300,200);
- setVisible(true);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement