繁体   English   中英

根据JRadioButton选择更改JButton的图标

[英]Changing the icon of a JButton based on a JRadioButton selection

我有一个带有ActionListener的JRadioButton,但无法弄清楚单击它时如何在另一个面板中触发JButton的图标更改。 两者的代码在下面列出。 选择正确的单选按钮后,图像需要从左按钮切换到右按钮。

package gui;

public class ExampleGUI extends JFrame {

private static final long serialVersionUID = 1L;
private JPanel contentPane;
ImageIcon icon = new ImageIcon(ExampleGUI.class
        .getResource("/gui/schlange1.gif"));

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

/**
 * Create the frame.
 */
public ExampleGUI() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setBounds(100, 100, 450, 300);
    contentPane = new JPanel();
    contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    contentPane.setLayout(new BorderLayout(0, 5));
    setContentPane(contentPane);

    JLabel lblExampleGui = new JLabel("Example GUI");
    lblExampleGui.setFont(new Font("Tahoma", Font.PLAIN, 18));
    lblExampleGui.setHorizontalAlignment(SwingConstants.CENTER);
    contentPane.add(lblExampleGui, BorderLayout.NORTH);

    JPanel radioButtonPanel = new JPanel();
    contentPane.add(radioButtonPanel, BorderLayout.SOUTH);

    JPanel imagePanelBoxes = mainImagePanel();
    contentPane.add(imagePanelBoxes, BorderLayout.CENTER);

    JButton leftImage = leftClickImage();
    imagePanelBoxes.add(leftImage);

    JButton rightImage = rightClickImage();
    imagePanelBoxes.add(rightImage);

    JRadioButton leftRadioButton = leftRadioButton();
    radioButtonPanel.add(leftRadioButton);

    JRadioButton rightRadioButton = rightRadioButton();
    radioButtonPanel.add(rightRadioButton);

    ButtonGroup group = new ButtonGroup();
    group.add(leftRadioButton);
    group.add(rightRadioButton);
}

private JPanel mainImagePanel() {
    JPanel imagesPanel = new JPanel();
    imagesPanel.setBorder(new EmptyBorder(0, 5, 0, 5));
    imagesPanel.setLayout(new GridLayout(0, 2, 10, 0));
    return imagesPanel;
}

private JRadioButton leftRadioButton() {
    final JRadioButton leftRadioButton = new JRadioButton("LEFT");
    leftRadioButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            changeIcon(leftClickImage(), icon);
        }
    });
    leftRadioButton.setSelected(true);
    return leftRadioButton;
}

private JRadioButton rightRadioButton() {
    final JRadioButton rightRadioButton = new JRadioButton("RIGHT");
    rightRadioButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            changeIcon(rightClickImage(), icon);
        }
    });
    rightRadioButton.isSelected();
    return rightRadioButton;
}

private JButton leftClickImage() {
    JButton leftImage = new JButton("");
    leftImage.setIcon(new ImageIcon(ExampleGUI.class
            .getResource("/gui/schlange1.gif")));
    leftImage.setBackground(Color.BLACK);
    return leftImage;
}

private JButton rightClickImage() {
    final JButton rightImage = new JButton("");
    rightImage.setBackground(Color.BLACK);
    return rightImage;
}

public void changeIcon(JButton jb, ImageIcon icon) {
    jb.setIcon(icon);
}

}

public class SwitchButton {
public static void main(String [] args){
    SwitchButton sb = new SwitchButton();
}

JFrame jfButtons =  new JFrame();
JPanel jpButtons =  new JPanel();
JRadioButton jrb = new JRadioButton("if you click me");
JButton jb = new JButton("I'll change");

public SwitchButton(){
    jrb.addActionListener(new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            changeColor(jb, Color.blue);
        }
    });
    jpButtons.add(jrb);
    jpButtons.add(jb);
    jfButtons.add(jpButtons);
    jfButtons.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    jfButtons.setVisible(true);
    jfButtons.pack();
}

public void changeColor(JButton jbtn, Color color){
    jbtn.setBackground(color);
}

}

基本上,这就是您要尝试执行的操作。 您只需要将changeColor()更改为changeIcon()

只是简单

yourJButton.setIcon(yourIconToSet);

这应该是通过单选按钮上的动作监听器调用的

leftRadioButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent arg0) {
        // ? <- here invoke code to change your button's label
    }
});

您可以提供Button,该按钮将作为您的JRadioButton-creator的参数进行更改,但它看起来非常难以理解且设计不当

private JRadioButton leftRadioButton(JButton affectedButton) {
    JRadioButton leftRadioButton = new JRadioButton("LEFT");
    leftRadioButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            if (leftRadioButton.isSelected())
                affectedButton=rightRadioButton();
            else 
                affectedButton=leftRadioButton();
        }
    });
    leftRadioButton.setSelected(true);
    return leftRadioButton;
}

我宁愿不使用actionListener的内联定义,而是在您的框架(或您使用的其他类)中实现它,以访问该类中使用的Buttons和Labels等。 如果您没有太多要听的项目,它将变得更具可读性。

public class buttonchanger extends JFrame implements ActionListener{
    JPanel radioButtonPanel;
    JPanel imagePanelBoxes;
    JButton leftImage;
    JButton rightImage;
    JRadioButton leftRadioButton;
    JRadioButton rightRadioButton;

    public initGUI() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 450, 300);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        contentPane.setLayout(new BorderLayout(0, 5));
        setContentPane(contentPane);

        JLabel lblExampleGui = new JLabel("Example GUI");
        lblExampleGui.setFont(new Font("Tahoma", Font.PLAIN, 18));
        lblExampleGui.setHorizontalAlignment(SwingConstants.CENTER);
        contentPane.add(lblExampleGui, BorderLayout.NORTH);

        JPanel radioButtonPanel = new JPanel();
        contentPane.add(radioButtonPanel, BorderLayout.SOUTH);

        JPanel imagePanelBoxes = mainImagePanel();
        contentPane.add(imagePanelBoxes, BorderLayout.CENTER);

        JButton leftImage = leftClickImage();
        imagePanelBoxes.add(leftImage);

        JButton rightImage = rightClickImage();
        imagePanelBoxes.add(rightImage);

        JRadioButton leftRadioButton = leftRadioButton();
        leftRadioButton.addActionListener(this);
        radioButtonPanel.add(leftRadioButton);

        JRadioButton rightRadioButton = rightRadioButton();
        rightRadioButton.addActionListener(this);
        radioButtonPanel.add(rightRadioButton);

        ButtonGroup group = new ButtonGroup();
        group.add(leftRadioButton);
        group.add(rightRadioButton);
    }

    public void ActionListener(ActionEvent actE){
        Object obj=actE.getSource();
        if (obj==leftRadioButton){
            leftImage.setIcon(yourIcon);
            //or do whatever you intend to do
        }
    }

}

希望这是您正在寻找的更多解决方案。 我仍然不知道在radioButton-Event之后哪个按钮应该更改为什么状态

ImageIcon icon = new ImageIcon("img src"); 

rightRadiobutton.addActionListener(new ActionListener(ActionEvent ae){
   changeIcon(rightButton, icon); 
});

public void changeIcon(JButon jb, ImageIcon icon){
    jb.setIcon(icon);
}

您对leftRadioButton进行相同的操作。 同样,您不需要单独的方法来创建组件。 您可以像这样分配和使用它们:

JRadioButton rightJrb = new JRadioButton("I am a radio button");
rightJrb.addActionListener();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM