IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Interfaces Graphiques en Java Discussion :

Mettre fenetre principale en pause durant l'affichage de la sous fenetre


Sujet :

Interfaces Graphiques en Java

  1. #1
    Membre du Club
    Homme Profil pro
    Developpeur Android
    Inscrit en
    Février 2015
    Messages
    104
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Developpeur Android
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2015
    Messages : 104
    Points : 68
    Points
    68
    Par défaut Mettre fenetre principale en pause durant l'affichage de la sous fenetre
    Bonjour,

    J'ai une seconde fenêtre que j'ouvre grâce au menu "nouveau" de la première.
    J'aimerai que lorsque je clique sur OK de la seconde fenêtre, les informations s'ajoutent dans la première.

    A la base, j'appelais une boite de dialogue (voir lignes 49-50-51) mais finalement j'ai opté pour une autre Jframe.

    Mon soucis, c'est (ligne 41 à 46), je ne sais pas comment récupérer la fermeture de mon JFrame !!

    Par avance, merci de votre aide



    voici mon code :
    1) Principal :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    package panneauContact;
     
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
     
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.KeyStroke;
    import javax.swing.table.DefaultTableModel;
     
    public class AppliCarnetAdresses {
     
    	public static void main(String[] args) {
    		JFrame fenetre = new JFrame("Contacts");//Création Objet Fenetre
     
    		Object[] colonnes = new String[]{"Titre", "Nom", "Prénom", "Adresse"};//Objet colonnes (tableau)
    		final DefaultTableModel model = new DefaultTableModel(colonnes, 0);//Initialise le modele tableau avec l'objet précédent
    		JTable tableau = new JTable(model);//Initialise le tableau avec l'objet précédent
     
    		fenetre.getContentPane().add(new JScrollPane(tableau));//AJoute un scroll dans la fenetre
     
    		int toucheRaccourcis = Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();//Crée un objet de config touche raccourci
    		JMenuItem nouveau = new JMenuItem("Nouveau", 78);//Configure l'option 'nouveau dans menu'
    		nouveau.setAccelerator(KeyStroke.getKeyStroke(78, toucheRaccourcis));//integre le raccourci à l'option
     
    		//Création d'un listener sous forme d'action sur le l'option.
    			nouveau.addActionListener(new ActionListener(){
     
    	            public void actionPerformed(ActionEvent ev) {
     
    	                SaisieContact panneau = new SaisieContact();
    	                panneau.setVisible(true);        
     
    						Boolean test = panneau.isVisible();
     
    						if (test == false) {
    							model.addRow(new String[] { panneau.getTitre(), panneau.getPrenom(), panneau.getNom(),
    									panneau.getAdresse() });
    						} 
     
     
    //	                int reponse = JOptionPane.showConfirmDialog(fenetre, panneau, "Nouveau contact", 2, -1);
    //	                if (reponse == 0) {
    //	                    model.addRow(new String[]{panneau.getTitre(), panneau.getPrenom(), panneau.getNom(), panneau.getAdresse()});
    //	                }
    	            }
    	        });
     
    		JMenuItem quitter = new JMenuItem("Quitter", 81);//meme chose mais avec quitter
     
    	   quitter.addActionListener(new ActionListener(){
     
    	            public void actionPerformed(ActionEvent ev) {
    	                if (JOptionPane.showConfirmDialog(fenetre, "Voulez-vous vraiment quitter ?", "Quitter", 0) == 0) {
    	                    System.exit(0);
    	                }
    	            }
    	        });
     
    	   //Partie création menu
    	   JMenuBar menu = new JMenuBar();
           fenetre.setJMenuBar(menu);
           JMenu mnuFichier = new JMenu("Fichier");
           menu.add(mnuFichier);
           mnuFichier.add(nouveau);
           mnuFichier.add(quitter);
     
     
           //Gestion de la fenetre globale
           fenetre.setSize(300, 200);
           fenetre.setDefaultCloseOperation(3);
           fenetre.setVisible(true);
    	}
     
     
    }

    2) Secondaire
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
     
    package panneauContact;
     
    import javax.swing.JOptionPane;
     
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
     
    /**
     *
     * @author TA-18
     */
    public class SaisieContact extends javax.swing.JFrame {
     
        /**
         * Creates new form AppliSaisieContact
         */
        public SaisieContact() {
            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">//GEN-BEGIN:initComponents
        private void initComponents() {
     
            titre = new javax.swing.JLabel();
            nom = new javax.swing.JLabel();
            prenom = new javax.swing.JLabel();
            adresse = new javax.swing.JLabel();
            ComboTitre = new javax.swing.JComboBox();
            TFNom = new javax.swing.JTextField();
            TFPrenom = new javax.swing.JTextField();
            jScrollPane1 = new javax.swing.JScrollPane();
            TAAdresse = new javax.swing.JTextArea();
            BtnOK = new javax.swing.JButton();
            BtnAnnuler = new javax.swing.JButton();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Contact");
            setBounds(new java.awt.Rectangle(600, 350, 0, 0));
            setIconImages(null);
     
            titre.setText("Titre");
     
            nom.setText("Nom");
     
            prenom.setText("Prénom");
     
            adresse.setText("Adresse");
     
            ComboTitre.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Mr", "Mme", "Melle" }));
     
            TAAdresse.setColumns(20);
            TAAdresse.setRows(5);
            jScrollPane1.setViewportView(TAAdresse);
     
            BtnOK.setText("OK");
     
     
            BtnOK.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    BtnOKActionPerformed(evt);
                }
            });
     
            BtnAnnuler.setText("Annuler");
            BtnAnnuler.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    BtnAnnulerMouseClicked(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()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                .addComponent(adresse)
                                .addGroup(layout.createSequentialGroup()
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(titre)
                                        .addComponent(nom)
                                        .addComponent(prenom))
                                    .addGap(41, 41, 41)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                        .addComponent(ComboTitre, 0, 145, Short.MAX_VALUE)
                                        .addComponent(TFNom)
                                        .addComponent(TFPrenom)))
                                .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 222, Short.MAX_VALUE)))
                        .addGroup(layout.createSequentialGroup()
                            .addGap(58, 58, 58)
                            .addComponent(BtnOK, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(BtnAnnuler)))
                    .addContainerGap(25, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(19, 19, 19)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(titre)
                        .addComponent(ComboTitre, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(nom)
                        .addComponent(TFNom, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(prenom)
                        .addComponent(TFPrenom, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(18, 18, 18)
                    .addComponent(adresse)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 8, Short.MAX_VALUE)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 55, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(BtnOK)
                        .addComponent(BtnAnnuler))
                    .addGap(7, 7, 7))
            );
     
            pack();
        }// </editor-fold>//GEN-END:initComponents
     
        private void BtnOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_BtnOKActionPerformed
     
        	this.setVisible(false);
     
        }//GEN-LAST:event_BtnOKActionPerformed
     
        private void BtnAnnulerMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_BtnAnnulerMouseClicked
            System.exit(0);
        }//GEN-LAST:event_BtnAnnulerMouseClicked
     
    //GEN-LAST:event_BtnOKMouseClicked
     
        /**
         * @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 ("METAL".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(SaisieContact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(SaisieContact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(SaisieContact.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(SaisieContact.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() {
                    SaisieContact fenetre = new SaisieContact();
                    fenetre.setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify//GEN-BEGIN:variables
        private javax.swing.JButton BtnAnnuler;
        private javax.swing.JButton BtnOK;
        private javax.swing.JComboBox ComboTitre;
        private javax.swing.JTextArea TAAdresse;
        private javax.swing.JTextField TFNom;
        private javax.swing.JTextField TFPrenom;
        private javax.swing.JLabel adresse;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JLabel nom;
        private javax.swing.JLabel prenom;
        private javax.swing.JLabel titre;
        // End of variables declaration//GEN-END:variables
     
        public String getTitre() {
    		return (String) this.ComboTitre.getSelectedItem();
    	}
     
    	public String getNom() {
    		return this.TFNom.getText();
    	}
     
    	public String getPrenom() {
    		return this.TFPrenom.getText();
    	}
     
    	public String getAdresse() {
    		return this.TAAdresse.getText();
    	}
    }

  2. #2
    Membre actif
    Homme Profil pro
    Développeur Java/JavaEE
    Inscrit en
    Août 2014
    Messages
    194
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Développeur Java/JavaEE

    Informations forums :
    Inscription : Août 2014
    Messages : 194
    Points : 290
    Points
    290
    Par défaut
    Bonjour,

    Tu n'as pas besoin de créer une autre jframe si le besoin est de créer une boite de dialog, simplement tu dois préciser dans l’événement actionPerformed de ton boutton situé dans ta boite de dialogue ce que tu souhaite vraiment faire. Je te file un exemple tu peux le tester si tu veux:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
     
     
    package test;
     
    public class JfameTest extends javax.swing.JFrame {
     
        public JfameTest() {
            initComponents();
        }
     
     
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jDialog1 = new javax.swing.JDialog();
            jTextDialogChamp1 = new javax.swing.JTextField();
            jTextDialogChamp2 = new javax.swing.JTextField();
            jLabel3 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
            jButton2 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jTextFrameChamp1 = new javax.swing.JTextField();
            jTextFrameChamp2 = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
     
            jLabel3.setText("champ 1");
     
            jLabel4.setText("champ 2");
     
            jButton2.setText("Save and close dialog");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout jDialog1Layout = new javax.swing.GroupLayout(jDialog1.getContentPane());
            jDialog1.getContentPane().setLayout(jDialog1Layout);
            jDialog1Layout.setHorizontalGroup(
                jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jDialog1Layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addGroup(jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLabel3)
                        .addComponent(jLabel4))
                    .addGap(46, 46, 46)
                    .addGroup(jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jButton2)
                        .addGroup(jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                            .addComponent(jTextDialogChamp1)
                            .addComponent(jTextDialogChamp2, javax.swing.GroupLayout.DEFAULT_SIZE, 86, Short.MAX_VALUE)))
                    .addContainerGap(138, Short.MAX_VALUE))
            );
            jDialog1Layout.setVerticalGroup(
                jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jDialog1Layout.createSequentialGroup()
                    .addGap(54, 54, 54)
                    .addGroup(jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jTextDialogChamp1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel3))
                    .addGap(29, 29, 29)
                    .addGroup(jDialog1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jTextDialogChamp2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel4))
                    .addGap(57, 57, 57)
                    .addComponent(jButton2)
                    .addContainerGap(97, Short.MAX_VALUE))
            );
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jLabel1.setText("champ 1");
     
            jLabel2.setText("champ 2");
     
            jButton1.setText("open dialog");
            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(63, 63, 63)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jLabel1)
                            .addGap(18, 18, 18)
                            .addComponent(jTextFrameChamp1, javax.swing.GroupLayout.PREFERRED_SIZE, 147, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jLabel2)
                            .addGap(18, 18, 18)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jButton1)
                                .addComponent(jTextFrameChamp2))))
                    .addContainerGap(312, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(59, 59, 59)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(jTextFrameChamp1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel2)
                        .addComponent(jTextFrameChamp2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(63, 63, 63)
                    .addComponent(jButton1)
                    .addContainerGap(212, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
     
            jDialog1.setSize(500, 400);
            jDialog1.setModal(true);
            jDialog1.setLocationRelativeTo(null);
            jDialog1.setVisible(true);
        }                                        
     
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                         
            jTextFrameChamp1.setText(jTextDialogChamp1.getText());
            jTextFrameChamp2.setText(jTextDialogChamp2.getText());
            jDialog1.setVisible(false);
        }                                        
     
        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(JfameTest.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(JfameTest.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(JfameTest.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(JfameTest.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 JfameTest().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JDialog jDialog1;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JTextField jTextDialogChamp1;
        private javax.swing.JTextField jTextDialogChamp2;
        private javax.swing.JTextField jTextFrameChamp1;
        private javax.swing.JTextField jTextFrameChamp2;
        // End of variables declaration                   
    }

  3. #3
    Membre du Club
    Homme Profil pro
    Developpeur Android
    Inscrit en
    Février 2015
    Messages
    104
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Developpeur Android
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2015
    Messages : 104
    Points : 68
    Points
    68
    Par défaut
    Hello Maine13,

    merci pour cette réponse.
    En effet, ça à l'air de ressembler à ma demande. J'ai effectivement lancé ton code.

    Je pensais qu'il été préférable de mettre la seconde fenêtre dans un autre fichier.

    Je vais analyser ton code pour voir si je peux m'en servir dans mon TP. Il s'agit de récupérer les infos de la seconde fenêtre pour insérer une ligne dans le tableau du premier Jframe.

    Je te tiens au courant

    Et thx very Much !

  4. #4
    Membre du Club
    Homme Profil pro
    Developpeur Android
    Inscrit en
    Février 2015
    Messages
    104
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Developpeur Android
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2015
    Messages : 104
    Points : 68
    Points
    68
    Par défaut
    Re-Salut.

    J'ai fait ceci, mais j'ai 2 messages d'erreur et impossible de les corriger.
    Faut bien avouer que d'un je suis débutant et deux, je suis fatigué

    J'adore la programmation, mais depuis quelques mois (dans ma formation) je "bouffe" des syntaxes de différentes technos 7/7 et quasi 24h24

    Mon but, bien entendu étend de compléter le tableau de la première fenêtre en rentrant des valeurs dans la seconde !!


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    package alone;
     
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
     
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.KeyStroke;
    import javax.swing.table.DefaultTableModel;
     
    public class ContactUnFichier extends javax.swing.JFrame {
     
        public ContactUnFichier() {
            initComponents();
        }
     
     
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     //Partie Boite de dialogue
        	jDialog1 = new javax.swing.JDialog();
            titre = new javax.swing.JLabel();
            nom = new javax.swing.JLabel();
            prenom = new javax.swing.JLabel();
            adresse = new javax.swing.JLabel();
            ComboTitre = new javax.swing.JComboBox();
            TFNom = new javax.swing.JTextField();
            TFPrenom = new javax.swing.JTextField();
            jScrollPane1 = new javax.swing.JScrollPane();
            TAAdresse = new javax.swing.JTextArea();
            BtnOK = new javax.swing.JButton();
            BtnAnnuler = new javax.swing.JButton();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Contact");
            setBounds(new java.awt.Rectangle(600, 350, 0, 0));
            setIconImages(null);
     
            titre.setText("Titre");
     
            nom.setText("Nom");
     
            prenom.setText("Prénom");
     
            adresse.setText("Adresse");
     
            ComboTitre.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Mr", "Mme", "Melle" }));
     
            TAAdresse.setColumns(20);
            TAAdresse.setRows(5);
            jScrollPane1.setViewportView(TAAdresse);
     
            BtnOK.setText("OK");
     
     
            BtnOK.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                	cliqueSurOk(evt);
                }
            });
     
            BtnAnnuler.setText("Annuler");
            BtnAnnuler.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    BtnAnnulerMouseClicked(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(jDialog1.getContentPane());
            jDialog1.getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                .addComponent(adresse)
                                .addGroup(layout.createSequentialGroup()
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(titre)
                                        .addComponent(nom)
                                        .addComponent(prenom))
                                    .addGap(41, 41, 41)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                        .addComponent(ComboTitre, 0, 145, Short.MAX_VALUE)
                                        .addComponent(TFNom)
                                        .addComponent(TFPrenom)))
                                .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 222, Short.MAX_VALUE)))
                        .addGroup(layout.createSequentialGroup()
                            .addGap(58, 58, 58)
                            .addComponent(BtnOK, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(BtnAnnuler)))
                    .addContainerGap(25, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(19, 19, 19)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(titre)
                        .addComponent(ComboTitre, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(nom)
                        .addComponent(TFNom, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(prenom)
                        .addComponent(TFPrenom, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(18, 18, 18)
                    .addComponent(adresse)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 8, Short.MAX_VALUE)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 55, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(BtnOK)
                        .addComponent(BtnAnnuler))
                    .addGap(7, 7, 7))
            );
     
     
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
    // Partie Principale
     
     
     
    		Object[] colonnes = new String[]{"Titre", "Nom", "Prénom", "Adresse"};//Objet colonnes (tableau)
    		final DefaultTableModel model = new DefaultTableModel(colonnes, 0);//Initialise le modele tableau avec l'objet précédent
    		JTable tableau = new JTable(model);//Initialise le tableau avec l'objet précédent
     
    		this.getContentPane().add(new JScrollPane(tableau));//AJoute un scroll dans la fenetre
     
    		int toucheRaccourcis = Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();//Crée un objet de config touche raccourci
    		JMenuItem nouveau = new JMenuItem("Nouveau", 78);//Configure l'option 'nouveau dans menu'
    		nouveau.setAccelerator(KeyStroke.getKeyStroke(78, toucheRaccourcis));//integre le raccourci à l'option
     
    		nouveau.addActionListener(new ActionListener(){
     
                public void actionPerformed(ActionEvent ev) {
                	cliqueSurNouveau(ev);
                }
    		});
     
    		JMenuItem quitter = new JMenuItem("Quitter", 81);//meme chose mais avec quitter
    		quitter.addActionListener(new ActionListener(){
     
    	    public void actionPerformed(ActionEvent ev) {
    	                if (JOptionPane.showConfirmDialog(this, "Voulez-vous vraiment quitter ?", "Quitter", 0) == 0) {
    	                    System.exit(0);
    	                }
    	            }
    	        });
     
    		   //Partie création menu
    		   JMenuBar menu = new JMenuBar();
    	       this.setJMenuBar(menu);
    	       JMenu mnuFichier = new JMenu("Fichier");
    	       menu.add(mnuFichier);
    	       mnuFichier.add(nouveau);
    	       mnuFichier.add(quitter);
     
     
    	       //Gestion de la fenetre globale
    	       this.setSize(300, 200);
    	       this.setDefaultCloseOperation(3);
    	       this.setVisible(true);
     
     
        }// </editor-fold>                        
     
        private void cliqueSurNouveau(ActionEvent evt) {                                         
     
            jDialog1.setSize(500, 400);
            jDialog1.setModal(true);
            jDialog1.setLocationRelativeTo(null);
            jDialog1.setVisible(true);
        }                                        
     
        private void cliqueSurOk(java.awt.event.ActionEvent evt) {                                         
        	model.addRow(new String[] { (String) ComboTitre.getSelectedItem(), TFPrenom.getText(), TFNom.getText(),
    		TAAdresse.getText()});
            jDialog1.setVisible(false);
        }                  
     
     
        private void BtnAnnulerMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_BtnAnnulerMouseClicked
        	jDialog1.setVisible(false);
        }//GEN-LAST:event_BtnAnnulerMouseClicked
     
     
        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 ("Metal".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(ContactUnFichier.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(ContactUnFichier.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(ContactUnFichier.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(ContactUnFichier.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 ContactUnFichier().setVisible(true);;//Création Objet Fenetre
                }
            });
        }
     
        // Variables declaration - do not modify                     
     
        private javax.swing.JButton jButton2;
        private javax.swing.JDialog jDialog1;
     
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JTextField jTextDialogChamp1;
        private javax.swing.JTextField jTextDialogChamp2;
     
        private javax.swing.JButton BtnAnnuler;
        private javax.swing.JButton BtnOK;
        private javax.swing.JComboBox ComboTitre;
        private javax.swing.JTextArea TAAdresse;
        private javax.swing.JTextField TFNom;
        private javax.swing.JTextField TFPrenom;
        private javax.swing.JLabel adresse;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JLabel nom;
        private javax.swing.JLabel prenom;
        private javax.swing.JLabel titre;
        // End of variables declaration//GEN-END:variables
    }
    Merci pour votre aide.

  5. #5
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Pour savoir si ta seconde fenêtre est fermée, il te suffit de mettre un WindowListener dessus et de vérifier quand l’évènement idoine est lancé (closing -en train d’être fermée- ou closed -vient d’être fermée-). Pour empêcher toute interaction avec la fenêtre mère, il te suffit de jouer sur la modalité de la seconde fenêtre.

    C'est ce que font grosso-modo les boites de dialogues mais de manière transparente sans que tu ais a t'occuper de quoi ce que soit.

    PS : on ne peut pas connaitre tes messages d'erreur si tu ne nous les donnes pas.
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  6. #6
    Membre du Club
    Homme Profil pro
    Developpeur Android
    Inscrit en
    Février 2015
    Messages
    104
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Developpeur Android
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2015
    Messages : 104
    Points : 68
    Points
    68
    Par défaut
    Merci.
    Ca m'a l'air d'être aussi une bonne idée.

    Je vais m'y pencher dessus et ferai un retour.

    @+

    Bomatch

  7. #7
    Membre du Club
    Homme Profil pro
    Developpeur Android
    Inscrit en
    Février 2015
    Messages
    104
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Developpeur Android
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2015
    Messages : 104
    Points : 68
    Points
    68
    Par défaut
    Salut les amis,

    voici au final mon code qui me permet d'avancer (Je n'ai pas eu le temps d'étudier la proposition de bouye):

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
     
    package panneauContact;
     
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
     
    import javax.swing.JOptionPane;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableModel;
     
    public class AppliCarnetAdresse extends javax.swing.JFrame {
     
    	/**
             * 
             */
    	private static final long serialVersionUID = 1L;
     
    	public AppliCarnetAdresse() {
    		initComponents();
    	}
     
    	@SuppressWarnings("unchecked")
    	// <editor-fold defaultstate="collapsed" desc="Generated Code">
    	private void initComponents() {
    		// Partie Boite de dialogue
    		jDialog1 = new javax.swing.JDialog();
    		titre = new javax.swing.JLabel();
    		nom = new javax.swing.JLabel();
    		prenom = new javax.swing.JLabel();
    		adresse = new javax.swing.JLabel();
    		ComboTitre = new javax.swing.JComboBox();
    		TFNom = new javax.swing.JTextField();
    		TFPrenom = new javax.swing.JTextField();
    		jScrollPane1 = new javax.swing.JScrollPane();
    		TAAdresse = new javax.swing.JTextArea();
    		BtnOK = new javax.swing.JButton();
    		BtnAnnuler = new javax.swing.JButton();
     
    		setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    		// setTitle("Contact");
    		//setBounds(new java.awt.Rectangle(600, 350, 0, 0));
    		// setIconImages(null);
     
    		titre.setText("Titre");
     
    		nom.setText("Nom");
     
    		prenom.setText("Prénom");
     
    		adresse.setText("Adresse");
     
    		ComboTitre.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Mr", "Mme", "Melle" }));
     
    		TAAdresse.setColumns(20);
    		TAAdresse.setRows(5);
    		jScrollPane1.setViewportView(TAAdresse);
     
    		BtnOK.setText("OK");
     
    		BtnOK.addActionListener(new java.awt.event.ActionListener() {
    			public void actionPerformed(java.awt.event.ActionEvent evt) {
    				cliqueSurOk(evt);
    			}
    		});
     
    		BtnAnnuler.setText("Annuler");
    		BtnAnnuler.addMouseListener(new java.awt.event.MouseAdapter() {
    			public void mouseClicked(java.awt.event.MouseEvent evt) {
    				BtnAnnulerMouseClicked(evt);
    			}
    		});
     
    		javax.swing.GroupLayout layout = new javax.swing.GroupLayout(jDialog1.getContentPane());
    		jDialog1.getContentPane().setLayout(layout);
    		layout.setHorizontalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addGroup(layout
    				.createSequentialGroup()
    				.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addGroup(layout
    						.createSequentialGroup().addContainerGap()
    						.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
    								.addComponent(adresse)
    								.addGroup(layout.createSequentialGroup()
    										.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    												.addComponent(titre).addComponent(nom).addComponent(prenom))
    										.addGap(41, 41, 41)
    										.addGroup(layout
    												.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
    												.addComponent(ComboTitre, 0, 145, Short.MAX_VALUE).addComponent(TFNom)
    												.addComponent(TFPrenom)))
    								.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 222,
    										Short.MAX_VALUE)))
    						.addGroup(layout.createSequentialGroup().addGap(58, 58, 58)
    								.addComponent(BtnOK, javax.swing.GroupLayout.PREFERRED_SIZE, 67,
    										javax.swing.GroupLayout.PREFERRED_SIZE)
    								.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    								.addComponent(BtnAnnuler)))
    				.addContainerGap(25, Short.MAX_VALUE)));
    		layout.setVerticalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    				.addGroup(layout.createSequentialGroup().addGap(19, 19, 19)
    						.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
    								.addComponent(titre).addComponent(ComboTitre, javax.swing.GroupLayout.PREFERRED_SIZE,
    										javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
    				.addGap(18, 18, 18)
    				.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE).addComponent(nom)
    						.addComponent(TFNom, javax.swing.GroupLayout.PREFERRED_SIZE,
    								javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
    				.addGap(18, 18, 18)
    				.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(prenom)
    						.addComponent(TFPrenom, javax.swing.GroupLayout.PREFERRED_SIZE,
    								javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
    				.addGap(18, 18, 18).addComponent(adresse)
    				.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 8, Short.MAX_VALUE)
    				.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 55,
    						javax.swing.GroupLayout.PREFERRED_SIZE)
    				.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
    				.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE).addComponent(BtnOK)
    						.addComponent(BtnAnnuler)).addGap(7, 7, 7))
     
    		);
     
    		setBounds(new java.awt.Rectangle(600, 350, 0, 0));
     
    		// Partie Principale
     
     
    		jPanel1 = new javax.swing.JPanel();
    		jScrollPane2 = new javax.swing.JScrollPane();
    		jTable2 = new javax.swing.JTable();
    		jMenuBar1 = new javax.swing.JMenuBar();
    		jMenu2 = new javax.swing.JMenu();
    		jMenuItem1 = new javax.swing.JMenuItem();
    		jMenuItem2 = new javax.swing.JMenuItem();
     
    		setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
    		jTable2.setModel(new javax.swing.table.DefaultTableModel(new Object[][] {
     
    		}, new String[] { "Titre", "Nom", "Prénom", "Adresse" }));
     
    		jScrollPane2.setViewportView(jTable2);
     
    		javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
    		jPanel1.setLayout(jPanel1Layout);
    		jPanel1Layout.setHorizontalGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    				.addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 282, Short.MAX_VALUE));
    		jPanel1Layout.setVerticalGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    				.addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 150, Short.MAX_VALUE));
     
    		jMenu2.setText("Fichier");
     
    		jMenuItem1.setAccelerator(
    				javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_N, java.awt.event.InputEvent.CTRL_MASK));
    		jMenuItem1.setText("Nouveau");
    		jMenuItem1.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
     
    		jMenuItem1.addActionListener(new ActionListener() {
     
    			public void actionPerformed(ActionEvent ev) {
    				cliqueSurNouveau(ev);
    			}
    		});
     
    		jMenu2.add(jMenuItem1);
     
    		jMenuItem2.setText("Quitter");
     
    		jMenuItem2.addActionListener(new ActionListener() {
     
    			public void actionPerformed(ActionEvent ev) {
    				if (JOptionPane.showConfirmDialog(null, "Voulez-vous vraiment quitter ?", "Quitter", 0) == 0) {
    					System.exit(0);
    				}
    			}
    		});
     
    		jMenu2.add(jMenuItem2);
     
    		jMenuBar1.add(jMenu2);
     
    		setJMenuBar(jMenuBar1);
     
    		javax.swing.GroupLayout layout1 = new javax.swing.GroupLayout(getContentPane());
    		getContentPane().setLayout(layout1);
    		layout1.setHorizontalGroup(layout1.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(
    				jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE));
    		layout1.setVerticalGroup(layout1.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(
    				jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE));
     
    		pack();
     
    	}// </editor-fold>
     
    	private void cliqueSurNouveau(ActionEvent evt) {
    		TFNom.setText("");
    		TFPrenom.setText("");
    		TAAdresse.setText("");
    		ComboTitre.setSelectedIndex(0);
    		jDialog1.setSize(280, 300);
            jDialog1.setModal(true);
            jDialog1.setLocationRelativeTo(null);
    		jDialog1.setVisible(true);
    	}
     
    	private void cliqueSurOk(java.awt.event.ActionEvent evt) {
    		TableModel model = jTable2.getModel();
    		((DefaultTableModel) model).addRow(new String[] { (String) ComboTitre.getSelectedItem(),TFNom.getText(), TFPrenom.getText(), TAAdresse.getText() });
    		jDialog1.setVisible(false);
    	}
     
    	private void BtnAnnulerMouseClicked(java.awt.event.MouseEvent evt) {// GEN-FIRST:event_BtnAnnulerMouseClicked
    		jDialog1.setVisible(false);
    	}// GEN-LAST:event_BtnAnnulerMouseClicked
     
    	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 ("Metal".equals(info.getName())) {
    					javax.swing.UIManager.setLookAndFeel(info.getClassName());
    					break;
    				}
    			}
    		} catch (ClassNotFoundException ex) {
    			java.util.logging.Logger.getLogger(AppliCarnetAdresse.class.getName()).log(java.util.logging.Level.SEVERE,
    					null, ex);
    		} catch (InstantiationException ex) {
    			java.util.logging.Logger.getLogger(AppliCarnetAdresse.class.getName()).log(java.util.logging.Level.SEVERE,
    					null, ex);
    		} catch (IllegalAccessException ex) {
    			java.util.logging.Logger.getLogger(AppliCarnetAdresse.class.getName()).log(java.util.logging.Level.SEVERE,
    					null, ex);
    		} catch (javax.swing.UnsupportedLookAndFeelException ex) {
    			java.util.logging.Logger.getLogger(AppliCarnetAdresse.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 AppliCarnetAdresse().setVisible(true);
    				;// Création Objet Fenetre
    			}
    		});
    	}
     
    	private javax.swing.JDialog jDialog1;
     
    	private javax.swing.JButton BtnAnnuler;
    	private javax.swing.JButton BtnOK;
    	private javax.swing.JComboBox ComboTitre;
    	private javax.swing.JTextArea TAAdresse;
    	private javax.swing.JTextField TFNom;
    	private javax.swing.JTextField TFPrenom;
    	private javax.swing.JLabel adresse;
    	private javax.swing.JScrollPane jScrollPane1;
    	private javax.swing.JLabel nom;
    	private javax.swing.JLabel prenom;
    	private javax.swing.JLabel titre;
     
    	// Variables declaration - do not modify
    	private javax.swing.JMenu jMenu2;
    	private javax.swing.JMenuBar jMenuBar1;
    	private javax.swing.JMenuItem jMenuItem1;
    	private javax.swing.JMenuItem jMenuItem2;
    	private javax.swing.JPanel jPanel1;
    	private javax.swing.JScrollPane jScrollPane2;
    	private javax.swing.JTable jTable2;
    	// End of variables declaration
     
    }

    MErci à tous

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [WD10] Affichage de fenetre ma fenetre principale
    Par Techys dans le forum WinDev
    Réponses: 7
    Dernier message: 16/08/2011, 02h37
  2. Mettre une pause dans l'affichages sur un formulaire
    Par benjamin50 dans le forum IHM
    Réponses: 2
    Dernier message: 10/04/2008, 15h47
  3. pb d'affichage de la fenetre principale
    Par amad206 dans le forum Langage
    Réponses: 4
    Dernier message: 05/08/2005, 09h23
  4. [web] [Perl\Tk]Positioner la fenetre principale
    Par etranger dans le forum Interfaces Graphiques
    Réponses: 2
    Dernier message: 28/12/2004, 18h53
  5. [langage] pause dans l'affichage
    Par louisis dans le forum Langage
    Réponses: 6
    Dernier message: 01/07/2004, 15h37

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo