我已经在我的应用程序类中实现了一个单例设计模式。该类称为SearchFounisseurUi。它会抑制JFrame Swing类。我还有另一个类叫做SearchFounisseurUi类。我已经在下面编写了代码,但对我不起作用。到目前为止,这是我的代码。

package VIEW;

import CONTROLLER.SearchFournisseurController;
import MODEL.tableModel.FournisseurTableModel;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.HeadlessException;
import java.awt.ScrollPane;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;

public class SearchFounisseurUi extends JFrame{

// Fields
private JTextField nomFournisseur ;
private JTable resultTable ;

// Label
private JLabel lblNomFournisseur;

private JButton chercherButton ;

// Model view controller
private FournisseurTableModel fournisseurTableModel ;
private SearchFournisseurController searchFournisseurController;
// Singleton
private static SearchFounisseurUi instance=null;

private  void SearchFounisseurUi() {

    initComponents();
    buildFrame();
    eventHandling( );
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    pack();

}





/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                SearchFounisseurUi frame = SearchFounisseurUi.getInstance();
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

private void initComponents() {
    // Model
    fournisseurTableModel = new FournisseurTableModel();

    searchFournisseurController = new SearchFournisseurController() ;
    searchFournisseurController.setModel(fournisseurTableModel);
    searchFournisseurController.setUi(this);
    searchFournisseurController.setData();

    // View
    lblNomFournisseur = new JLabel("Nom Fournisseur");
    nomFournisseur = new JTextField(40);
    chercherButton = new JButton("Chercher");
    resultTable  = new JTable(fournisseurTableModel);

 }

private void eventHandling() {
 }

private void buildFrame() {
    setLayout(new GridBagLayout());
     setPreferredSize(new Dimension(300,400));
    GridBagConstraints gc = new GridBagConstraints();

            // Line 1
    gc.gridx = 0;
    gc.gridy = 0;
            gc.gridwidth = 2;
            gc.weighty = 1.0;
            gc.fill = GridBagConstraints.BOTH;
    gc.anchor = GridBagConstraints.LINE_START;

            add(new JScrollPane(resultTable),gc);

            // line 2

            gc.gridy++;
            gc.gridwidth  = 1 ;
            gc.weighty = 0.01;
            gc.fill = GridBagConstraints.HORIZONTAL;

            add(lblNomFournisseur,gc);

            gc.gridx++;
            add(nomFournisseur,gc);

            // line 3

            gc.gridx = 0 ;
            gc.gridy++ ;
            add(chercherButton,gc);


 }

public static SearchFounisseurUi getInstance(){
    if(instance == null)
    instance =  new SearchFounisseurUi();

    return instance;

}
}


这是我上课的地方:

btnChercherFournisseur.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent ae) {
                SearchFounisseurUi fen  = SearchFounisseurUi.getInstance();

            }
        });

最佳答案

setVisible(true)对象上调用SearchFounisseurUi
那应该解决您的问题。

    btnChercherFournisseur.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent ae) {
            SearchFounisseurUi fen  = SearchFounisseurUi.getInstance();
            fen.setVisible(true);  /// !!! ///
        }
    });

07-24 09:19