Jak utworzyć kilka formatek w jednym projecie?

0

Witajcie!

W jaki sposób korzystać z kilku formatek (swing)? Chciałbym zrobić małą formatkę do logowania użytkowników, po zalogowaniu użytkownik będzie przenoszony na dużą (główną) formatkę.

EDIT: znalazłem gotowe rozwiązanie SwingX czy ktoś z tego korzystał?

BTW: czy w javie jest jakiś edytor formatek (chodzi o podobne narzędzie jak w Visual Stuidio Crystal Reports)?

0

O to Ci się rozchodzi ?

 
NowaFormatka NowaFormatka = new NowaFormatka();
NowaFormatka.setVisible(true);
0
Piorun123 napisał(a):

O to Ci się rozchodzi ?

 
NowaFormatka NowaFormatka = new NowaFormatka();
NowaFormatka.setVisible(true);

Mój kod (wygenerowany przez NetBeans) z dodanym przyciskiem wygląda następująco, co mam tutaj dodać aby po naciśnięciu przycisku otworzyła się nowa formatka a stara zamknęła?

 
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package moj.pakiet;

import javax.swing.JFrame;
import javax.swing.SwingUtilities;



/**
 *
 * @author User
 */
public class AplikacjaSwing extends javax.swing.JFrame {

    /**
     * Creates new form AplikacjaSwing
     */
    public AplikacjaSwing() {
        initComponents();
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        jButton1 = new javax.swing.JButton();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        jButton1.setText("Start");
        jButton1.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                jButton1ActionPerformed(evt);
            }
        });

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(125, 125, 125)
                .addComponent(jButton1)
                .addContainerGap(218, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(111, 111, 111)
                .addComponent(jButton1)
                .addContainerGap(166, Short.MAX_VALUE))
        );

        pack();
    }// </editor-fold>                        

    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        
        
 
        
        
        
    }                                        

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(AplikacjaSwing.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(AplikacjaSwing.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(AplikacjaSwing.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(AplikacjaSwing.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new AplikacjaSwing().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify                     
    private javax.swing.JButton jButton1;
    // End of variables declaration                   
}



1 użytkowników online, w tym zalogowanych: 0, gości: 1