Package interfaz.alterna

Examples of interfaz.alterna.AcercaDeNosotros


                @Override
                public void actionPerformed(ActionEvent e) {
                    //si todavia no esta creado lo creamos
                    if (aboutUS == null) {
                        aboutUS = new AcercaDeNosotros(null, true);
                        aboutUS.setLocationRelativeTo(null);
                    }
                    aboutUS.setVisible(true);
                }
            });
View Full Code Here


    }//GEN-LAST:event_jMenuItem4ActionPerformed

    private void jMenuItem5ActionPerformed1(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMenuItem5ActionPerformed1
        //si todavia no esta creado lo creamos
        if (aboutUS == null) {
            aboutUS = new AcercaDeNosotros(this, true);
            aboutUS.setLocationRelativeTo(this);
        }
        aboutUS.setVisible(true);
    }//GEN-LAST:event_jMenuItem5ActionPerformed1
View Full Code Here

TOP

Related Classes of interfaz.alterna.AcercaDeNosotros

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.