3

アクション リスナーが呼び出されるたびに、この JScrollPane のリストをまったく別のリストに変更する必要があります。その方法については完全にはわかりません。JList を変更し、ScrollPane を再描画して再検証しようとしましたが、目的の効果が得られません。ここで私の質問を説明するコンパイル可能なミニプログラムを作成しました。

import javax.swing.*;
import javax.swing.border.TitledBorder;
import java.awt.*;
import java.awt.event.*;
import java.sql.SQLException;

@SuppressWarnings("serial")
public class TestFrame extends JFrame {
public final Dimension SCROLL_PANE_DIMENSION = new Dimension(200, 100);
private JComboBox<String> comboNames;
private JPanel panel = new JPanel();
private JList<String> availableList;
private JScrollPane theScrollPane;
private boolean string1Used = true;
String[] strings = { "Aaardvark", "Adam", "Alms" };
String[] strings2 = { "Bad", "Bugs", "Bunny" };

public static void main(String[] args){
    try {
        TestFrame frame = new TestFrame();
        frame.setVisible(true);
    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

public TestFrame() throws SQLException {
    String[] comboStrings = { "Doesn't", "matter", "here" };

    this.setSize(300,200);

    availableList = new JList<String>(strings);

    theScrollPane = new JScrollPane(availableList);

    theScrollPane = new JScrollPane(availableList);
    theScrollPane.setPreferredSize(SCROLL_PANE_DIMENSION);
    theScrollPane.setSize(SCROLL_PANE_DIMENSION);
    theScrollPane.setBorder(BorderFactory.createTitledBorder(
            BorderFactory.createEtchedBorder(), "Sub Conditions",
            TitledBorder.CENTER, 0));

    availableList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    availableList.setSelectedIndex(0);
    availableList.setVisibleRowCount(5);
    availableList.setSize(SCROLL_PANE_DIMENSION);

    comboNames = new JComboBox<String>(comboStrings);

    comboNames.addActionListener(new ConditionComboListener());

    panel = new JPanel();


    this.add(panel);


    panel.add(comboNames);
    panel.add(theScrollPane);

}

private class ConditionComboListener implements ActionListener {

    @Override
    public void actionPerformed(ActionEvent arg0) {
        refreshSubConditionList();
    }

    private void refreshSubConditionList() {
        if (string1Used) {
            System.out.println("Switching to Strings2");
            availableList = new JList<String>(strings2);
            string1Used = false;
        } else{
            System.out.println("Switching to Strings");
            availableList = new JList<String>(strings);
            string1Used = true;
        }
        theScrollPane = new JScrollPane(availableList);
        theScrollPane.revalidate();
        theScrollPane.repaint();
    }

}

}

この例では、JComboBox の内容を変更するたびに、JScrollPane 内のリストが配列 string1 と strings2 の間で切り替わるようにします。また、後でではなく、コンボボックスの内容を変更するとすぐに、この変更が表示されるようにしたいと考えています。コンパイルされたコードからわかるように、そのようにはうまくいきません。私は何を間違っていますか?必要なときにリストを変更しないのはなぜですか?

4

1 に答える 1

9

新しいスクロールペインを作成しても、スクロールペインはパネルに追加されません。

とにかく、新しいスクロールペインを作成し続ける必要はありません。スクロールペインに表示されるコンポーネントを変更するだけです:

//theScrollPane = new JScrollPane(availableList);
//theScrollPane.revalidate();
//theScrollPane.repaint();
theScrollPane.setViewportView(availableList);
于 2013-03-11T05:55:41.843 に答える