Beispiel #1
0
  public Ventana() {
    super("Hamilpod");
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setResizable(false);
    this.setSize(600, 400);
    this.setLayout(null);
    this.setLocationRelativeTo(null);
    iniciarComponentes();
    agregarEventos();
    ponerArrastrable();

    mostrarAlbum();
    this.setIconImage(new ImageIcon("imagenes/icon.png").getImage());
  }