Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class Uitleg1 extends JFrame{
  2.  
  3.  
  4. public static void main(String[] args) {
  5. JFrame theFrame = new JFrame();
  6. theFrame.setTitle("uitleg1");
  7. theFrame.setSize(500,500);
  8. theFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  9. theFrame.setContentPane(new MainPanel());
  10. theFrame.setVisible(true);
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement