Advertisement
Guest User

Untitled

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