Skip to content

Instantly share code, notes, and snippets.

@PierreZ
Created January 21, 2015 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PierreZ/2e5498d7490c8cf7b464 to your computer and use it in GitHub Desktop.
Save PierreZ/2e5498d7490c8cf7b464 to your computer and use it in GitHub Desktop.
Swing with intellij
public class ColorWindow extends JFrame{
.
.
.
public ColorWindow() {
super("ColorWindow");
setContentPane(RootJPanel);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
pack();
setVisible(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment