Advertisement
MrsMcLead

Window

May 5th, 2022
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.   // Make a GUI Window appear
  2.   public static void makeWindow() {
  3.     JFrame myWindow = new JFrame();
  4.     myWindow.setTitle("Look at me!");
  5.     myWindow.setSize(300, 200);
  6.     myWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  7.     myWindow.setVisible(true);
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement