Sunday, January 13, 2013

JWindow Exaple In Java.♥

import javax.swing.JFrame;
import javax.swing.JWindow;

public class Main {
  public static void main(String[] args) {
    JFrame f = new JFrame("The Frame");
    f.setSize(300300);
    f.setLocation(100100);

    JWindow w = new JWindow();
    w.setSize(300300);
    w.setLocation(500100);

    f.setVisible(true);
    w.setVisible(true);
  }
}

OUTPUT:

No comments: