gpt4 book ai didi

java - 执行一个actionListener一次并继续执行另一个actionListener

转载 作者:行者123 更新时间:2023-12-02 05:35:53 24 4
gpt4 key购买 nike

有人对这个问题有其他看法吗?

我需要这部分代码的帮助,我只想执行一次actionListener(向按下的Jbutton添加白色边框),然后继续执行另一个actionListener(向按下的另一个(不同的)Jbutton添加蓝色边框)。这是我的代码,它仅连续执行白色边框。非常感谢您的反馈。

for(int c = 0; c< 10; c++) 
{
for (int r = 0; r< 10; r++)
{
bu1[c][r] = new JButton(); //Insert Into List
panel.add(bu1[c][r]);

final int i = c;
final int j = r;

bu1[i][j].addActionListener(new ActionListener()
{

@Override
public void actionPerformed(ActionEvent e)
{
if (e.getSource() == bu1[i][j])
{
bu1[i][j].setBorder(BorderFactory.createLineBorder(Color.WHITE, 2));
bu1[i][j].removeActionListener(this);
}

}

});

bu1[i][j].addActionListener(new ActionListener()
{

@Override
public void actionPerformed(ActionEvent e)
{
if (e.getSource() == bu1[i][j])
{
bu1[i][j].setBorder(BorderFactory.createLineBorder(Color.BLUE, 2));
}

}

});

最佳答案

如果我理解您的问题,那么最简单的解决方案就是在您的 ActionListener 中保留一个计数。因为这样你只需要一个 ActionListener ,其内容类似于,

private int count = 0;
@Override
public void actionPerformed(ActionEvent e) {
JButton obj = bu1[i][j]; // <-- save the typing.
if (e.getSource() == obj) {
if (count == 0) {
obj.setBorder(BorderFactory.createLineBorder(
Color.WHITE, 2)); // <-- set to white on 0.
} else if (count == 1) {
obj.setBorder(BorderFactory.createLineBorder(
Color.BLUE, 2)); // <-- set to blue on 1.
}
count++;
}
}

关于java - 执行一个actionListener一次并继续执行另一个actionListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24978917/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com