1

所以我有两个类 testPanel 和 testFrame。所有按钮都在 testPanel 类中。我想将 ActionListeners 添加到 testFrame 类中的 Jbuttons 中。我该怎么做呢?

测试面板:

public class testPanel extends JPanel{

JLabel codeLbl = new JLabel("Code");
JLabel titleLbl = new JLabel("Title");
JLabel priceLbl = new JLabel("Price");

JTextField codeTxt = new JTextField(20);
JTextField titleTxt = new JTextField(20);
JTextField priceTxt = new JTextField(20);

JButton addBtn = new JButton("Add");
JButton updateBtn = new JButton("Update");
JButton delBtn = new JButton("Delete");
JButton exitBtn = new JButton("Exit");
JButton firstBtn = new JButton("First");
JButton prevBtn = new JButton("Previous");
JButton nextBtn = new JButton("Next");
JButton lastBtn = new JButton("Last");

JPanel info = new JPanel();
JPanel buttons = new JPanel();

public testPanel(){
    info.setLayout(new GridLayout(3,2));

    info.add(codeLbl);
    info.add(codeTxt);
    info.add(titleLbl);
    info.add(titleTxt);
    info.add(priceLbl);
    info.add(priceTxt);

    buttons.setLayout(new GridLayout(2,4));

    buttons.add(addBtn);
    buttons.add(updateBtn);
    buttons.add(delBtn);
    buttons.add(exitBtn);
    buttons.add(firstBtn);
    buttons.add(prevBtn);
    buttons.add(nextBtn);
    buttons.add(lastBtn);

    JPanel container = new JPanel();
    container.setLayout(new BorderLayout());

    container.add(BorderLayout.CENTER, info);
    container.add(BorderLayout.SOUTH, buttons);

    add(container);
}
}

测试框架:

 public class testFrame extends JFrame{
JPanel p = new testPanel();

public testFrame(){
    super("BLAH");        

    this.getContentPane().add(p);setVisible(true);
    pack();
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

public static void main(String[] args){
    new testFrame();
}

}

4

3 回答 3

1

首先,我反对简单地提供对面板中按钮的公共访问权限,这会导致管理和责任范围出现太多问题......恕我直言

您需要某种对 的引用testPane,然后它会提供附加ActionListener. 然后testPane由管理如何完成。

于 2013-09-30T21:25:15.243 回答
0

您可以这样做:

1. 首先创建一个扩展 JPanel 的类

2. 在该类中,定义一个 setActionListener 方法,如下所示:

public void setButtonsActionListener(ActionListener listener){
   // and in here set your buttons action listeners

   button1.addActionListener(listener);
   button2.addActionListener(listener);
   ...

}

3、在JFrame类中,调用面板的setButtonsActionListener方法,匿名实现ActionLister接口:

    thePanel.setButtonsActionListener(new ActionListener(){
        @Override
        void actionPerformed(ActionEvent e){
            // here do what you gotta do when the button is clicked
        }

    });
于 2013-09-30T21:31:24.510 回答
-1

那么你可以试试这个(这需要你有一个 testPanel 类的实例和 button1 设置为公共:

testFrame.button1.setActionListener(new ActionListener(@Override public void actionPerformed(ActionEvent event){}});

或者您可以在 testPanel 中创建一个函数来设置动作侦听器。

于 2013-09-30T21:35:39.073 回答