Guest User

Untitled

a guest
Dec 13th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. import javax.swing.*;
  2. import java.awt.*;
  3. public class NFrame extends JFrame
  4. {
  5. public NFrame()
  6. {
  7. setLocation(50,100);
  8. setTitle("Este é NFrame ( um JFrame personalizado )");
  9. setSize(600,450);
  10. setUndecorated(true);
  11. getRootPane().setWindowDecorationStyle(JRootPane.FRAME);
  12. getRootPane().setBorder(BorderFactory.createLineBorder(Color.red,3));
  13. setDefaultCloseOperation(EXIT_ON_CLOSE);
  14. }
  15. public static void main(String arg[])
  16. {
  17. new NFrame().setVisible(true);
  18. }
  19. }
Add Comment
Please, Sign In to add comment