有一个 JCheckBox 称为“一”,另一个称为“二”。还有一个名为“ sp ”的 JScrollPane。其中有一个 JTextArea。复选框的目的是隐藏和显示程序的某些部分。我简化了程序,在这里我繁琐地解释了应该发生的事情,只是为了确保你理解程序。
这应该发生:
最初只有一个可见并且未选中。Whenever one is selected, two should be set visible. 无论何时选择两个,都应将sp设置为可见。取消选中复选框时,相应的组件将设置为不可见。但是,当取消选择一个时,sp也被设置为不可见。(一控制二和sp)。
问题:
选择一个时,可以看到两个。But when two is selected, sp is not visible (it should be). 当一个被取消选中而两个被选中时,两个是不可见的(这应该发生)。But when one is selected, two is visible and all of a sudden sp is now visible. 在此之后,程序按预期运行。
然而,这适用于其他 JComponent(代替 JScrollPane)。
有什么问题?
package tests;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Checkboxscrollpane extends JPanel {
private JCheckBox one, two;
private JScrollPane sp;
private Checkboxscrollpane() {
Listener listener = new Listener();
one = new JCheckBox();
one.addActionListener(listener);
add(one);
two = new JCheckBox();
two.addActionListener(listener);
add(two);
sp = new JScrollPane(new JTextArea("hello"));
add(sp);
one.setVisible(true);
two.setVisible(false);
sp.setVisible(false);
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
one.setLocation(50, 50);
two.setLocation(70, 70);
sp.setLocation(90, 90);
}
private class Listener implements ActionListener {
public void actionPerformed(ActionEvent e) {
if (e.getSource() == one) {
two.setVisible(one.isSelected());
}
sp.setVisible(one.isSelected() && two.isSelected());
}
}
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(300, 200);
frame.add(new Checkboxscrollpane());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}