예제 #1
0
 public AppWin() {
   super("Guido's Draft Experience");
   setSize(1280, 770);
   setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   // setLookAndFeel();
   DraftPanel dp = new DraftPanel();
   dp.setBackground(Color.WHITE);
   add(dp);
   setVisible(true);
 }