Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package com.company;
  2. import javax.swing.JFrame;
  3. public class Main {
  4. public static void main(String[] args) {
  5. ButtonFrame buttonFrame = new ButtonFrame();
  6. buttonFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  7. buttonFrame.setSize(500,300);
  8. buttonFrame.setVisible(true);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement