第一次点击后禁用 JButton

Disabling JButton after first click

我能够使用此代码在一个圆圈中创建大约 11 个 JButton ......

    public class Beginner extends JPanel {
        private JButton quest;
        public Beginner() {

                  int n = 10; //no of JButtons
                  int radius = 200;
                  Point center = new Point (250, 250);

                  double angle = Math.toRadians(360 / n);

                  List <Point> points = new ArrayList<Point> ();

                  points.add(center);

                  for (int i = 0; i < n; i++) {
                      double theta = i * angle;

                      int dx = (int) (radius * Math.sin(theta));

                      int dy = (int) (radius * Math.cos(theta));

                      Point p = new Point (center.x + dx , center.y + dy);
                      points.add(p);
                  }

                  draw (points);                      
                  }
                   public void draw (List<Point> points) {

                       JPanel panels = new JPanel();

                       SpringLayout spring = new SpringLayout();
                       int count = 1;
                       for (Point point: points) {

                           quest = new JButton("Question " + count); //JButton is drawn about 10 times in a circle arragement
                           quest.setForeground(Color.BLUE);
                            Font fonte = new Font("Script MT Bold", Font.PLAIN, 20);
                            quest.setFont(fonte);
                           add (quest);
                           count++;
                           ;
                           spring.putConstraint(SpringLayout.WEST, quest, point.x, SpringLayout.WEST, panels );

                           spring.putConstraint(SpringLayout.NORTH, quest, point.y, SpringLayout.NORTH, panels );

                           setLayout(spring);

                           panels.setOpaque(false);
                           panels.setVisible(true);
                           panels.setLocation(10, 10);

                           add(panels);
}
}
}

现在,我必须为每个 JButton 创建一个 actionListener,这样每个 Button 应该只在一次单击时处于活动状态,然后它会将其颜色更改为绿色!,我不知道该怎么做!感谢您的帮助!

在按钮的动作侦听器中尝试做:

button.setEnabled(false);

应该可以。

您应该为所有按钮添加一个侦听器:

方法一:

    quest.addActionListener(new ActionListener(){
            @Override
            public void actionPerformed(ActionEvent e) {
                    JButton source = (JButton) e.getSource();
                    source.setEnabled(false);
                    source.setBackground(Color.GREEN);
            }
    });

方法二:

    quest.addActionListener(new DisableButtonActionListener());

            ...

    private class DisableButtonActionListener implements ActionListener {
                @Override
                public void actionPerformed(ActionEvent e) {
                        JButton source = (JButton) e.getSource();
                        source.setEnabled(false);
                        source.setBackground(Color.GREEN);
                }
    }

方法 3(我个人的选择):

Beginner implements ActionListener {

            @Override
            public void actionPerformed(ActionEvent e) {
                    JButton source = (JButton) e.getSource();
                    source.setEnabled(false);
                    source.setBackground(Color.GREEN);
            }

            ...

            quest.addActionListener(this);

}