Advertisement
Guest User

MainFrame

a guest
Jan 14th, 2024
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | Software | 0 0
  1. import javax.swing.JFrame;
  2. import javax.swing.WindowConstants;
  3.  
  4. public class MainFrame extends JFrame{
  5.     public void init(){
  6.     setTitle("Project");
  7.     setSize(640, 480);
  8.     setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
  9.     setVisible(true);
  10.     }
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement