Fermer une fenetre du type Container en Java
Fermé
Mozer8888
Messages postés
76
Date d'inscription
mardi 27 septembre 2011
Statut
Membre
Dernière intervention
13 octobre 2012
-
10 avril 2012 à 10:18
Mozer8888 Messages postés 76 Date d'inscription mardi 27 septembre 2011 Statut Membre Dernière intervention 13 octobre 2012 - 10 avril 2012 à 10:24
Mozer8888 Messages postés 76 Date d'inscription mardi 27 septembre 2011 Statut Membre Dernière intervention 13 octobre 2012 - 10 avril 2012 à 10:24
A voir également:
- Fermer une fenetre du type Container en Java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Jeux java itel 5360 ✓ - Forum Jeux vidéo
- Télécharger jeux java gameloft gratuit - Forum Mobile
1 réponse
Mozer8888
Messages postés
76
Date d'inscription
mardi 27 septembre 2011
Statut
Membre
Dernière intervention
13 octobre 2012
1
10 avril 2012 à 10:24
10 avril 2012 à 10:24
je vous donne ici un apercu de mon projet:
//CLASSE 1ERE FENETRE///////////////////////////////////////////////////////////////////////////////////
package modele;
import java.awt.*;
import javax.swing.*;
import java.io.File;
import java.lang.Object;
public class Accueil extends JFrame {
public static void main(String[] args) {
new Accueil();
}
public Accueil() { //ma premiere fenetre//
super("mon Projet Java");
WindowUtilities.setNativeLookAndFeel(); //Utilitaire de formatage de texte
Container content = getContentPane(); //Création du containaire
...
...
JButton bouton = new JButton( "Ok" );
Ecouteur okai = new Ecouteur();
bouton.addActionListener( okai );
...
...
//application d'une taille à mon conteneur
content.setPreferredSize(new Dimension(640,450));
pack();
setVisible(true);
}
//METHODE DE FERMETURE///////////////////////////
public void fermFen(){
Accueil f =new Accueil();
f.dispose();
}
}
//CLASSE ECOUTE FENETRE///////////////////////////////////////////////////////////////////////////////////
package modele;
import java.awt.event.*;
public class Ecouteur implements ActionListener {
public void actionPerformed( ActionEvent e ) {
//FERMETURE ANCIENNE FENETRE QUI NE FONCTIONNE PAS
Accueil fenAc = new Accueil();
fenAc.fermFen();
//content.setVisible(false); NE FONCTIONNE PAS AUSSI
//OUVERTURE NOUVELLE FENETRE QUI FONCTIONNE BIEN/////////
//UNE AUTRE CLASSE QUE JE N'AI PAS MIS ICI////////////////////////////////
MenuPrincipal menu = new MenuPrincipal();
menu.ShowMenuPrincipal();
}
}
//CLASSE 1ERE FENETRE///////////////////////////////////////////////////////////////////////////////////
package modele;
import java.awt.*;
import javax.swing.*;
import java.io.File;
import java.lang.Object;
public class Accueil extends JFrame {
public static void main(String[] args) {
new Accueil();
}
public Accueil() { //ma premiere fenetre//
super("mon Projet Java");
WindowUtilities.setNativeLookAndFeel(); //Utilitaire de formatage de texte
Container content = getContentPane(); //Création du containaire
...
...
JButton bouton = new JButton( "Ok" );
Ecouteur okai = new Ecouteur();
bouton.addActionListener( okai );
...
...
//application d'une taille à mon conteneur
content.setPreferredSize(new Dimension(640,450));
pack();
setVisible(true);
}
//METHODE DE FERMETURE///////////////////////////
public void fermFen(){
Accueil f =new Accueil();
f.dispose();
}
}
//CLASSE ECOUTE FENETRE///////////////////////////////////////////////////////////////////////////////////
package modele;
import java.awt.event.*;
public class Ecouteur implements ActionListener {
public void actionPerformed( ActionEvent e ) {
//FERMETURE ANCIENNE FENETRE QUI NE FONCTIONNE PAS
Accueil fenAc = new Accueil();
fenAc.fermFen();
//content.setVisible(false); NE FONCTIONNE PAS AUSSI
//OUVERTURE NOUVELLE FENETRE QUI FONCTIONNE BIEN/////////
//UNE AUTRE CLASSE QUE JE N'AI PAS MIS ICI////////////////////////////////
MenuPrincipal menu = new MenuPrincipal();
menu.ShowMenuPrincipal();
}
}