Anonymní profil Tonda – Programujte.com
 x   TIP: Přetáhni ikonu na hlavní panel pro připnutí webu

Anonymní profil Tonda – Programujte.comAnonymní profil Tonda – Programujte.com

 

Příspěvky odeslané z IP adresy 93.99.68.–

Tonda
Java › NetBeans JFrame form
20. 3. 2012   #155215

#4 zlz
To nefunguje protože initComponents vygeneroval NetBeans a do toho nemůžu zasahovat, tudíž nic měnit ani připisovat .

Ale asi jsem přesně nespecifikoval co vlastně chci dělat protože i kdyby to šlo změnit asi by to neřešilo můj problém...

Potřebuji za běhu programu pomocí tlačítek ty panely měnit. Bude například podobných 6 panelů s jiným obsahem a když tuknu na příslušné tlačítko tak se změní obsah JFrame za jeden z panelů ... 

Dělá se to takhle v praxi že ? 

Zkusím ještě udělat vlastní metodu do které zkopíruji obsah initComponents ... Pokud není nic elegantnějšího ...

Tonda
Java › NetBeans JFrame form
19. 3. 2012   #155212

#2 zlz
Naklikat mi to jde ale to bohužel nechci, potřebuji to tam vložit "programově", ale nejde mi to, něco dělám stále špatně a nevím co... Můžeš mi prosím napsat kousíček kódu, který loží JPanel do JFormu  ??? 

"Chytrému napověz hloupého kopni"...

Předem díky :-) 

Tonda
Java › NetBeans JFrame form
19. 3. 2012   #155177

Dobrý den, 

netbeans IDE jsem si vytvořil JFrame form a JPanel form (pravý klik na Pacakge/new/JFrame form ..... obdobně i JPanel form), mno a teď mám obrovský problém "JAK VLOŽIT JPANEL DO JFRAME FORMU A ZOBRAZIT????", zkoušel jsem spoustu variant ale nic mi nefakčilo. Googlil jsem, ale asi špatně ..... Můžete mi prosím poradit ? 

JFRAME FORM

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

/**
 *
 * @author iwant
 */
public class NewJFrame extends javax.swing.JFrame {

    /**
     * Creates new form NewJFrame
     */
    public NewJFrame() {
        initComponents();
        this.setVisible(false);
        this.add(new NewJPanel());
        this.setVisible(true);
    }

    /**
     * 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() {

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 400, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 300, Short.MAX_VALUE)
        );

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

    /**
     * @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/…el/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(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.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 NewJFrame().setVisible(true);
                        
            }
        });
    }
    // Variables declaration - do not modify
    // End of variables declaration
}

JPANEL FORM

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

/**
 *
 * @author iwant
 */
public class NewJPanel extends javax.swing.JPanel {

    /**
     * Creates new form NewJPanel
     */
    public NewJPanel() {
        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() {

        jLabel1 = new javax.swing.JLabel();

        jLabel1.setText("LABEL LABEL LABEL LABEL LABEL");

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
        this.setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(112, 112, 112)
                .addComponent(jLabel1)
                .addContainerGap(131, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(132, 132, 132)
                .addComponent(jLabel1)
                .addContainerGap(154, Short.MAX_VALUE))
        );
    }// </editor-fold>
    // Variables declaration - do not modify
    private javax.swing.JLabel jLabel1;
    // End of variables declaration
}

 

 

Hostujeme u Českého hostingu       ISSN 1801-1586       ⇡ Nahoru Webtea.cz logo © 20032024 Programujte.com
Zasadilo a pěstuje Webtea.cz, šéfredaktor Lukáš Churý